rebuild/pom.xml

189 lines
5 KiB
XML
Raw Normal View History

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>
2018-05-21 18:42:07 +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>
2018-10-13 02:00:03 +08:00
<version>1.0.0-SNAPSHOT</version>
2018-09-25 12:37:46 +08:00
<name>rebuild</name>
2018-10-13 02:00:03 +08:00
<url>https://github.com/getrebuild/rebuild</url>
2018-05-21 18:42:07 +08:00
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-04 16:05:19 +08:00
<skipTests>false</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>
2018-05-21 18:42:07 +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>
</plugin>
</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-09-29 15:03:57 +08:00
<dependency>
2019-01-03 16:26:11 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>commons</artifactId>
<version>master-SNAPSHOT</version>
2018-09-29 15:03:57 +08:00
</dependency>
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>
<version>master-SNAPSHOT</version>
2018-05-21 18:42:07 +08:00
</dependency>
<dependency>
2019-01-03 16:26:11 +08:00
<groupId>com.github.devezhao</groupId>
<artifactId>persist4j</artifactId>
2019-01-03 17:21:29 +08:00
<version>master-SNAPSHOT</version>
2018-05-21 18:42:07 +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>
2018-09-17 02:28:55 +08:00
<artifactId>bizz</artifactId>
2019-01-03 16:26:11 +08:00
<version>master-SNAPSHOT</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-01-04 01:53:40 +08:00
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>EasyCaptcha</artifactId>
<version>1.5.0</version>
</dependency>
2018-05-21 18:42:07 +08:00
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<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>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
2018-12-29 22:58:01 +08:00
<version>1.3.3</version>
2018-05-21 18:42:07 +08:00
</dependency>
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
2019-01-03 17:21:29 +08:00
<version>7.2.18</version>
2018-05-21 18:42:07 +08:00
</dependency>
2018-08-04 04:01:54 +08:00
<dependency>
2018-09-29 15:03:57 +08:00
<groupId>com.github.stuxuhai</groupId>
<artifactId>jpinyin</artifactId>
<version>1.1.8</version>
</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>
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>
2018-10-30 14:34:02 +08:00
</dependency>
2018-10-30 15:36:11 +08:00
<dependency>
2018-11-22 23:17:51 +08:00
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
2018-10-30 15:36:11 +08:00
</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>