2018-05-18 11:41:39 +08:00
|
|
|
<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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-03-09 16:07:23 +08:00
|
|
|
|
2018-10-13 02:00:03 +08:00
|
|
|
<groupId>com.rebuild</groupId>
|
2018-09-25 12:37:46 +08:00
|
|
|
<artifactId>rebuild</artifactId>
|
2018-05-18 11:41:39 +08:00
|
|
|
<packaging>war</packaging>
|
2019-06-29 21:29:51 +08:00
|
|
|
<version>1.4.0-dev</version>
|
2018-09-25 12:37:46 +08:00
|
|
|
<name>rebuild</name>
|
2019-01-31 22:03:30 +08:00
|
|
|
<description>Building your business-systems free!</description>
|
2019-01-26 14:54:03 +08:00
|
|
|
<url>https://getrebuild.com/</url>
|
2019-01-31 17:43:10 +08:00
|
|
|
|
2019-01-31 22:03:30 +08:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GPL-3.0</name>
|
2019-03-09 16:07:23 +08:00
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
|
2019-01-31 22:03:30 +08:00
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2018-05-18 11:51:45 +08:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2018-10-13 02:00:03 +08:00
|
|
|
<url>https://github.com/getrebuild/rebuild/issues</url>
|
2018-05-18 11:51:45 +08:00
|
|
|
</issueManagement>
|
2018-05-21 18:42:07 +08:00
|
|
|
|
2018-05-18 11:41:39 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<argLine>-Dfile.encoding=UTF-8</argLine>
|
2019-01-14 21:50:19 +08:00
|
|
|
<skipTests>true</skipTests>
|
2019-01-03 17:21:29 +08:00
|
|
|
<spring.version>4.3.21.RELEASE</spring.version>
|
2018-05-18 11:41:39 +08:00
|
|
|
</properties>
|
2019-01-31 17:43:10 +08:00
|
|
|
|
2018-05-18 11:41:39 +08:00
|
|
|
<build>
|
2018-09-25 12:37:46 +08:00
|
|
|
<finalName>rebuild</finalName>
|
2018-05-18 11:41:39 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-01-04 16:05:19 +08:00
|
|
|
<version>3.8.0</version>
|
2018-05-18 11:41:39 +08:00
|
|
|
<configuration>
|
2018-09-17 02:28:55 +08:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2018-05-18 11:41:39 +08:00
|
|
|
</configuration>
|
2019-01-06 03:17:00 +08:00
|
|
|
</plugin>
|
2019-05-15 20:56:01 +08:00
|
|
|
<!-- `mvn cobertura:cobertura -DskipTests=false -Drbpass=PASSKEY` & `bash <(curl -s https://codecov.io/bash) -t TOKEN` -->
|
2019-01-06 03:17:00 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
2019-03-09 01:43:05 +08:00
|
|
|
<instrumentation>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/rebuild/**/*Test.class</exclude>
|
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
2019-01-06 03:17:00 +08:00
|
|
|
<formats>
|
|
|
|
<format>html</format>
|
|
|
|
<format>xml</format>
|
|
|
|
</formats>
|
|
|
|
<check />
|
|
|
|
</configuration>
|
2018-05-18 11:41:39 +08:00
|
|
|
</plugin>
|
2019-05-15 20:56:01 +08:00
|
|
|
<!-- `mvn jetty:run -Drbpass=PASSKEY` Server on 18080 by jetty -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>9.4.18.v20190429</version>
|
|
|
|
<configuration>
|
|
|
|
<webApp>
|
|
|
|
<contextPath>/rebuild</contextPath>
|
|
|
|
</webApp>
|
|
|
|
<httpConnector>
|
|
|
|
<port>18080</port>
|
|
|
|
</httpConnector>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-05-18 11:41:39 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-05-21 18:42:07 +08:00
|
|
|
|
2019-01-03 17:21:29 +08:00
|
|
|
<!-- Unpublish lib can be found on https://github.com/devezhao/ -->
|
2019-01-03 16:26:11 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2019-01-03 17:21:29 +08:00
|
|
|
|
2018-05-18 11:41:39 +08:00
|
|
|
<dependencies>
|
2018-05-21 18:42:07 +08:00
|
|
|
<dependency>
|
2019-01-03 16:26:11 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>momentjava</artifactId>
|
2019-01-21 23:52:32 +08:00
|
|
|
<version>0.1.1</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-01-03 16:26:11 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
2019-01-14 20:16:38 +08:00
|
|
|
<artifactId>bizz</artifactId>
|
2019-01-21 23:52:32 +08:00
|
|
|
<version>1.0.1</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
2019-04-21 02:24:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.devezhao</groupId>
|
|
|
|
<artifactId>commons</artifactId>
|
2019-05-10 16:00:58 +08:00
|
|
|
<version>1.1.4</version>
|
2019-04-21 02:24:48 +08:00
|
|
|
</dependency>
|
2018-09-17 02:28:55 +08:00
|
|
|
<dependency>
|
2019-01-03 16:26:11 +08:00
|
|
|
<groupId>com.github.devezhao</groupId>
|
2019-01-14 20:16:38 +08:00
|
|
|
<artifactId>persist4j</artifactId>
|
2019-07-16 22:20:22 +08:00
|
|
|
<version>8e268735d2</version>
|
2018-09-17 02:28:55 +08:00
|
|
|
</dependency>
|
2018-12-30 23:07:02 +08:00
|
|
|
<dependency>
|
2019-01-03 16:26:11 +08:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2019-01-03 17:21:29 +08:00
|
|
|
<version>4.12</version>
|
2019-01-03 16:26:11 +08:00
|
|
|
<scope>test</scope>
|
2018-12-30 23:07:02 +08:00
|
|
|
</dependency>
|
2019-04-21 02:34:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
<version>1.1.16</version>
|
|
|
|
</dependency>
|
2019-01-14 20:16:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-01-15 01:11:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
<version>2.3.3</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-03-09 16:07:23 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jstl</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>taglibs</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
</dependency>
|
2018-05-21 18:42:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-websocket</artifactId>
|
2018-09-29 15:03:57 +08:00
|
|
|
<version>${spring.version}</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
2018-12-28 18:25:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<version>3.2.10</version>
|
|
|
|
</dependency>
|
2018-05-21 18:42:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2019-01-03 17:21:29 +08:00
|
|
|
<version>1.9.2</version>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
<version>2.3.0</version>
|
2019-03-09 01:43:05 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-05-21 18:42:07 +08:00
|
|
|
</dependency>
|
2018-10-15 15:39:31 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
2019-01-03 17:21:29 +08:00
|
|
|
<version>2.10.6</version>
|
2019-03-09 01:43:05 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-10-15 15:39:31 +08:00
|
|
|
</dependency>
|
2018-10-30 14:34:02 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
2019-01-03 17:21:29 +08:00
|
|
|
<version>2.10.1</version>
|
2019-03-09 01:43:05 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-10-30 14:34:02 +08:00
|
|
|
</dependency>
|
2019-01-08 13:12:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.3.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
2019-06-04 00:29:05 +08:00
|
|
|
<version>7.2.20</version>
|
2019-01-08 13:12:50 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.whvcse</groupId>
|
|
|
|
<artifactId>EasyCaptcha</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
2019-04-21 02:34:28 +08:00
|
|
|
<!--
|
2019-01-08 13:12:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stuxuhai</groupId>
|
|
|
|
<artifactId>jpinyin</artifactId>
|
|
|
|
<version>1.1.8</version>
|
|
|
|
</dependency>
|
2019-04-21 02:34:28 +08:00
|
|
|
-->
|
2019-02-17 15:17:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
<version>1.21</version>
|
|
|
|
</dependency>
|
2019-03-13 16:18:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.11.3</version>
|
|
|
|
</dependency>
|
2019-04-21 02:34:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.hankcs</groupId>
|
|
|
|
<artifactId>hanlp</artifactId>
|
|
|
|
<version>portable-1.7.2</version>
|
|
|
|
</dependency>
|
2019-05-16 02:30:11 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
2019-05-16 15:17:22 +08:00
|
|
|
<artifactId>flexmark</artifactId>
|
|
|
|
<version>0.50.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
|
|
<artifactId>flexmark-ext-tables</artifactId>
|
2019-05-16 02:30:11 +08:00
|
|
|
<version>0.50.4</version>
|
|
|
|
</dependency>
|
2019-01-03 17:21:29 +08:00
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<version>2.1.2.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
|
|
<version>140</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
2018-05-18 11:41:39 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|