rebuild/pom.xml

410 lines
15 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>
<version>2.3.4.RELEASE</version>
<relativePath/>
</parent>
2020-04-29 21:15:25 +08:00
<groupId>com.rebuild</groupId>
<artifactId>rebuild</artifactId>
2020-12-07 13:32:30 +08:00
<version>2.2.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>
</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
<!-- /etc/init.d/rebuild.jar start|stop|restart -->
<!--
<configuration>
<executable>true</executable>
<fork>true</fork>
</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>
<version>1.10.0</version>
<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>
2020-10-17 15:02:34 +08:00
<!-- USE RB COMMERCIAL MODULES -->
<!--
<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
<!-- Unpublished libs can be found on https://github.com/devezhao/ -->
2020-04-29 21:15:25 +08:00
<repositories>
<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>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
2020-04-29 21:15:25 +08:00
</dependency>
2020-10-16 21:53:44 +08:00
-->
2020-11-09 03:14:21 +08:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>5.2.9.RELEASE</version>
</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>
<version>0.2.0</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>
2020-12-17 22:45:15 +08:00
<version>0bba4283a1</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>
2020-11-27 15:41:14 +08:00
<version>1.2.0</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>
2020-12-19 15:49:53 +08:00
<version>39f6476e69</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>
<version>1.9.5</version>
</dependency>
<dependency>
2020-10-16 21:53:44 +08:00
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<version>2.9.8</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
2020-11-09 03:14:21 +08:00
<version>1.1.22</version>
2020-10-16 21:53:44 +08:00
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
2020-11-06 22:03:19 +08:00
<version>8.0.22</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.10.6</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.10.2</version>
</dependency>
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
2020-06-24 16:36:09 +08:00
<version>7.2.29</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>EasyCaptcha</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>eu.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>1.21</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
</dependency>
<dependency>
<groupId>com.hankcs</groupId>
<artifactId>hanlp</artifactId>
2020-08-06 16:09:09 +08:00
<version>portable-1.7.8</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>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
2020-08-06 16:09:09 +08:00
<version>4.8.0</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
2020-08-06 16:09:09 +08:00
<version>2.2.6</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>
2020-08-06 16:09:09 +08:00
<version>5.1.2</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.11</version>
</dependency>
<dependency>
<groupId>es.moki.ratelimitj</groupId>
<artifactId>ratelimitj-inmemory</artifactId>
<version>0.6.0</version>
</dependency>
2020-06-04 23:53:38 +08:00
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.4.0</version>
</dependency>
2020-10-16 21:53:44 +08:00
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.13.4</version>
</dependency>
2020-04-29 21:15:25 +08:00
</dependencies>
2020-10-16 21:53:44 +08:00
</project>