rebuild/pom.xml

343 lines
12 KiB
XML
Raw Normal View History

2020-04-29 21:15:25 +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
2020-04-29 21:15:25 +08:00
<groupId>com.rebuild</groupId>
<artifactId>rebuild</artifactId>
<packaging>war</packaging>
<version>1.11.2</version>
2020-04-29 21:15:25 +08:00
<name>rebuild</name>
<description>Building your business-systems freely!</description>
2020-04-29 21:15:25 +08:00
<url>https://getrebuild.com/</url>
2019-01-31 17:43:10 +08:00
2020-04-29 21:15:25 +08:00
<licenses>
<license>
<name>GPL-3.0</name>
<url>https://getrebuild.com/license/LICENSE.txt</url>
2020-04-29 21:15:25 +08:00
</license>
<license>
<name>COMMERCIAL</name>
<url>https://getrebuild.com/license/COMMERCIAL.txt</url>
2020-04-29 21:15:25 +08:00
</license>
</licenses>
2020-04-29 21:15:25 +08:00
<issueManagement>
<system>GitHub</system>
<url>https://github.com/getrebuild/rebuild/issues</url>
</issueManagement>
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>
<skipTests>true</skipTests>
2020-08-06 16:09:09 +08:00
<spring.version>4.3.28.RELEASE</spring.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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- Codecov : `mvn cobertura:cobertura -DskipTests=false -Drbpass=PASSKEY` & `bash <(curl -s https://codecov.io/bash) -t TOKEN` -->
2020-04-29 21:15:25 +08:00
<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>
<!-- Jetty run on 18080 : `mvn jetty:run -Drbpass=PASSKEY` -->
2020-04-29 21:15:25 +08:00
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
2020-08-06 16:09:09 +08:00
<version>9.4.31.v20200723</version>
2020-04-29 21:15:25 +08:00
<configuration>
<webApp>
<contextPath>/rebuild</contextPath>
</webApp>
<httpConnector>
<port>18080</port>
</httpConnector>
</configuration>
</plugin>
</plugins>
</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>
<groupId>com.github.devezhao</groupId>
<artifactId>momentjava</artifactId>
2020-06-16 17:58:27 +08:00
<version>0.2.0</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>com.github.devezhao</groupId>
<artifactId>bizz</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.github.devezhao</groupId>
<artifactId>commons</artifactId>
2020-08-06 16:09:09 +08:00
<version>1.3.0</version>
2020-04-29 21:15:25 +08:00
<exclusions>
<exclusion>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.devezhao</groupId>
<artifactId>persist4j</artifactId>
2020-06-16 22:57:18 +08:00
<version>1.4.3</version>
2020-04-29 21:15:25 +08:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
2020-04-29 21:15:25 +08:00
<scope>test</scope>
</dependency>
2020-06-23 14:17:46 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
2020-08-06 16:09:09 +08:00
<version>1.2.73</version>
2020-06-23 14:17:46 +08:00
</dependency>
2020-04-29 21:15:25 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
2020-08-06 16:09:09 +08:00
<version>1.1.23</version>
2020-04-29 21:15:25 +08:00
</dependency>
<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>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
<version>${spring.version}</version>
</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>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.3.2</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.10.6</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.10.2</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<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>
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>
<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-04-29 21:15:25 +08:00
</dependencies>
2020-04-29 21:13:23 +08:00
</project>