rebuild/pom.xml

450 lines
17 KiB
XML
Raw Normal View History

2020-10-16 21:53:44 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2020-04-29 21:15:25 +08:00
<modelVersion>4.0.0</modelVersion>
2020-10-16 21:53:44 +08:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2021-10-29 13:06:42 +08:00
<version>2.5.6</version>
2020-10-16 21:53:44 +08:00
<relativePath/>
</parent>
2020-04-29 21:15:25 +08:00
<groupId>com.rebuild</groupId>
<artifactId>rebuild</artifactId>
2021-10-29 13:06:42 +08:00
<version>2.7.0-dev</version>
2020-04-29 21:15:25 +08:00
<name>rebuild</name>
2020-10-16 21:53:44 +08:00
<description>RB V2 use SpringBoot</description>
2020-10-16 23:28:57 +08:00
<!-- UNCOMMENT USE TOMCAT -->
<!-- <packaging>war</packaging> -->
2018-05-21 18:42:07 +08:00
2020-04-29 21:15:25 +08:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>
2020-10-16 21:53:44 +08:00
<java.version>1.8</java.version>
2020-04-29 21:15:25 +08:00
<skipTests>true</skipTests>
2021-02-03 16:00:27 +08:00
<!-- https://github.com/spring-projects/spring-boot/issues/24602 -->
<thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
2020-04-29 21:15:25 +08:00
</properties>
2019-01-31 17:43:10 +08:00
2020-04-29 21:15:25 +08:00
<build>
<finalName>rebuild</finalName>
<plugins>
<plugin>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2020-10-21 16:44:10 +08:00
<configuration>
2021-08-09 23:05:37 +08:00
<!-- /etc/init.d/rebuild.jar start|stop|restart -->
<!--
2020-10-21 16:44:10 +08:00
<executable>true</executable>
<fork>true</fork>
2021-08-09 23:05:37 +08:00
-->
2021-08-31 23:55:37 +08:00
<!-- <includeSystemScope>true</includeSystemScope> -->
2020-10-21 16:44:10 +08:00
</configuration>
2020-04-29 21:15:25 +08:00
</plugin>
<plugin>
2020-10-16 21:53:44 +08:00
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
2021-07-23 23:57:41 +08:00
<version>1.11.0</version>
2020-10-16 21:53:44 +08:00
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>
<execution>
<id>gulp build</id>
<goals>
<goal>gulp</goal>
</goals>
<phase>generate-resources</phase>
</execution>
</executions>
2020-04-29 21:15:25 +08:00
<configuration>
2020-10-16 21:53:44 +08:00
<nodeVersion>v10.22.0</nodeVersion>
<workingDirectory>.deploy</workingDirectory>
2020-04-29 21:15:25 +08:00
</configuration>
</plugin>
2021-06-23 12:24:39 +08:00
<!-- USE COMMERCIAL MODULES IF EXISTS -->
2020-10-17 15:02:34 +08:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>rbv-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/@rbv/main/java</source>
</sources>
</configuration>
</execution>
<execution>
<id>rbv-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}/@rbv/main/resources</directory>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>rbv-test-source</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/@rbv/test/java</source>
</sources>
</configuration>
</execution>
2020-11-05 20:52:09 +08:00
<execution>
<id>rbv-test-resource</id>
<phase>generate-test-resources</phase>
<goals>
<goal>add-test-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}/@rbv/test/resources</directory>
</resource>
</resources>
</configuration>
</execution>
2020-10-17 15:02:34 +08:00
</executions>
</plugin>
2020-10-16 23:07:49 +08:00
<!-- Codecov : `mvn cobertura:cobertura -DskipTests=false -Drbpass=PASSKEY` & `bash <(curl -s https://codecov.io/bash) -t TOKEN` -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<instrumentation>
<excludes>
<exclude>com/rebuild/**/*Test.class</exclude>
</excludes>
</instrumentation>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
2020-04-29 21:15:25 +08:00
</plugins>
2020-10-16 21:53:44 +08:00
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>web/node_modules/**</exclude>
</excludes>
</resource>
</resources>
2020-04-29 21:15:25 +08:00
</build>
2018-05-21 18:42:07 +08:00
2021-08-19 09:53:46 +08:00
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub OWNER Apache Maven Packages</name>
<url>https://maven.pkg.github.com/getrebuild/rebuild</url>
</repository>
</distributionManagement>
2020-04-29 21:15:25 +08:00
<repositories>
2021-02-02 00:25:34 +08:00
<repository>
<id>alimaven</id>
<name>public</name>
2021-04-17 15:07:36 +08:00
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
2021-02-02 00:25:34 +08:00
</repository>
<!-- Unpublished libs can be found on https://github.com/devezhao/ -->
2020-04-29 21:15:25 +08:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2019-01-03 17:21:29 +08:00
2020-04-29 21:15:25 +08:00
<dependencies>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2020-04-29 21:15:25 +08:00
<exclusions>
<exclusion>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
2020-04-29 21:15:25 +08:00
</exclusion>
</exclusions>
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
2020-10-16 23:28:57 +08:00
<!-- UNCOMMENT USE TOMCAT -->
<!-- <scope>provided</scope> -->
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
2020-04-29 21:15:25 +08:00
</dependency>
2020-06-23 14:17:46 +08:00
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
2020-11-09 03:14:21 +08:00
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2020-06-23 14:17:46 +08:00
</dependency>
2020-04-29 21:15:25 +08:00
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
2020-11-09 03:14:21 +08:00
<artifactId>spring-boot-configuration-processor</artifactId>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
2020-04-29 21:15:25 +08:00
<scope>test</scope>
</dependency>
2020-10-16 21:53:44 +08:00
<!--
2020-04-29 21:15:25 +08:00
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
2020-04-29 21:15:25 +08:00
</dependency>
2021-09-30 14:37:21 +08:00
-->
<!-- Use Live Reload: https://docs.spring.io/spring-boot/docs/current/reference/html/using.html#using.devtools.livereload -->
2020-04-29 21:15:25 +08:00
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
2021-04-09 17:10:13 +08:00
<scope>provided</scope>
2020-10-16 21:53:44 +08:00
<optional>true</optional>
2020-04-29 21:15:25 +08:00
</dependency>
2021-09-30 14:37:21 +08:00
2021-07-19 14:31:19 +08:00
<!-- Use SPEC -->
2020-11-09 03:14:21 +08:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
2021-10-29 13:06:42 +08:00
<version>5.3.12</version>
2020-11-09 03:14:21 +08:00
</dependency>
2020-10-16 21:53:44 +08:00
2020-04-29 21:15:25 +08:00
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>momentjava</artifactId>
2021-03-26 15:11:15 +08:00
<version>0.2.1</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>commons</artifactId>
2021-09-17 00:39:26 +08:00
<version>1.3.5</version>
2020-10-16 21:53:44 +08:00
<exclusions>
<exclusion>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
2020-11-13 21:39:16 +08:00
<exclusion>
<artifactId>c3p0</artifactId>
<groupId>com.mchange</groupId>
</exclusion>
2020-10-16 21:53:44 +08:00
</exclusions>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>bizz</artifactId>
2021-09-17 00:39:26 +08:00
<version>1.2.1</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>persist4j</artifactId>
2021-10-29 10:52:22 +08:00
<version>1.5.6</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
2021-10-29 13:06:42 +08:00
<version>2.13.0</version>
2020-10-16 21:53:44 +08:00
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
2021-10-29 13:06:42 +08:00
<version>1.2.8</version>
2020-10-16 21:53:44 +08:00
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
2021-10-26 18:05:23 +08:00
<version>8.0.27</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
2021-07-19 14:31:19 +08:00
<version>2.10.9.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
2021-07-19 14:31:19 +08:00
<version>7.8.0</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.github.whvcse</groupId>
2021-09-24 00:50:34 +08:00
<artifactId>easy-captcha</artifactId>
2020-04-29 21:15:25 +08:00
<version>1.6.2</version>
</dependency>
2021-08-26 18:09:46 +08:00
<dependency>
2021-09-22 20:54:10 +08:00
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
2021-11-15 22:42:29 +08:00
<version>5.8.3</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
2021-10-29 13:06:42 +08:00
<version>1.14.3</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.hankcs</groupId>
<artifactId>hanlp</artifactId>
2021-07-19 14:31:19 +08:00
<version>portable-1.8.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark</artifactId>
2020-08-06 16:09:09 +08:00
<version>0.62.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-tables</artifactId>
2020-08-06 16:09:09 +08:00
<version>0.62.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
2021-10-18 18:05:34 +08:00
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-ext-gfm-tasklist</artifactId>
<version>0.62.2</version>
</dependency>
2020-04-29 21:15:25 +08:00
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
2021-10-29 13:06:42 +08:00
<version>4.9.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
2021-10-29 13:06:42 +08:00
<version>2.2.11</version>
2020-04-29 21:15:25 +08:00
<exclusions>
<exclusion>
<artifactId>ehcache</artifactId>
<groupId>org.ehcache</groupId>
</exclusion>
</exclusions>
</dependency>
2020-10-16 21:53:44 +08:00
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.4</version>
</dependency>
2020-04-29 21:15:25 +08:00
<dependency>
2020-08-06 16:09:09 +08:00
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-08-06 16:09:09 +08:00
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
2020-08-06 16:09:09 +08:00
<artifactId>poi-ooxml-schemas</artifactId>
<version>4.1.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
2020-08-06 16:09:09 +08:00
<groupId>org.jxls</groupId>
<artifactId>jxls</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>org.jxls</groupId>
<artifactId>jxls-poi</artifactId>
<version>2.8.1</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
</dependency>
<dependency>
<groupId>com.googlecode.aviator</groupId>
<artifactId>aviator</artifactId>
2021-10-29 13:06:42 +08:00
<version>5.2.7</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
2021-07-19 14:31:19 +08:00
<version>0.4.14</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>es.moki.ratelimitj</groupId>
<artifactId>ratelimitj-inmemory</artifactId>
2021-07-19 14:31:19 +08:00
<version>0.7.0</version>
2020-04-29 21:15:25 +08:00
</dependency>
2020-06-04 23:53:38 +08:00
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
2021-02-02 00:25:34 +08:00
<version>3.4.1</version>
2020-06-04 23:53:38 +08:00
</dependency>
2020-10-16 21:53:44 +08:00
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
2021-11-15 22:42:29 +08:00
<version>3.16.4</version>
2020-10-16 21:53:44 +08:00
</dependency>
2021-03-07 18:23:27 +08:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>1.5</version>
</dependency>
2021-08-31 19:40:15 +08:00
<dependency>
<groupId>com.onelogin</groupId>
<artifactId>java-saml</artifactId>
2021-10-29 13:06:42 +08:00
<version>2.8.0</version>
2021-08-31 19:40:15 +08:00
</dependency>
2021-07-19 23:53:01 +08:00
<dependency>
2021-09-08 16:44:23 +08:00
<groupId>eu.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>1.21</version>
</dependency>
2021-07-19 23:53:01 +08:00
<dependency>
2021-08-31 23:55:37 +08:00
<groupId>com.github.devezhao</groupId>
2021-07-19 23:53:01 +08:00
<artifactId>dingtalk-sdk</artifactId>
2021-08-31 23:55:37 +08:00
<version>1.0-20210901</version>
2021-07-19 23:53:01 +08:00
</dependency>
2020-04-29 21:15:25 +08:00
</dependencies>
2020-10-16 21:53:44 +08:00
</project>