xx-job/pom.xml

142 lines
4.4 KiB
XML
Raw Normal View History

2015-11-28 21:04:47 +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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xuxueli</groupId>
2015-11-28 21:04:47 +08:00
<artifactId>xxl-job</artifactId>
2019-12-12 22:03:00 +08:00
<version>2.2.0-SNAPSHOT</version>
2015-11-28 21:04:47 +08:00
<packaging>pom</packaging>
2017-05-17 21:13:48 +08:00
<name>${project.artifactId}</name>
2019-12-12 20:50:44 +08:00
<description>A distributed task scheduling framework.</description>
2019-11-06 12:36:55 +08:00
<url>https://www.xuxueli.com/</url>
2016-09-05 21:07:07 +08:00
2015-11-28 21:04:47 +08:00
<modules>
2016-05-24 12:07:01 +08:00
<module>xxl-job-core</module>
2016-09-06 22:08:59 +08:00
<module>xxl-job-admin</module>
<module>xxl-job-executor-samples</module>
</modules>
2015-11-28 21:04:47 +08:00
2017-07-30 18:48:31 +08:00
<properties>
2018-10-05 22:19:56 +08:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2018-10-05 22:27:58 +08:00
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2018-10-05 22:19:56 +08:00
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
2018-10-27 22:42:47 +08:00
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.test.skip>true</maven.test.skip>
2019-11-22 19:24:53 +08:00
<xxl-rpc.version>1.5.0</xxl-rpc.version>
2018-10-05 22:19:56 +08:00
2019-10-21 15:52:14 +08:00
<spring.version>4.3.25.RELEASE</spring.version>
2019-09-27 10:51:34 +08:00
<spring-boot.version>1.5.22.RELEASE</spring-boot.version>
<mybatis-spring-boot-starter.version>1.3.5</mybatis-spring-boot-starter.version>
<mysql-connector-java.version>5.1.48</mysql-connector-java.version>
2017-07-30 18:48:31 +08:00
<slf4j-api.version>1.7.29</slf4j-api.version>
<junit.version>4.12</junit.version>
2017-07-30 18:48:31 +08:00
2019-09-27 10:51:34 +08:00
<groovy.version>2.5.8</groovy.version>
2017-07-30 18:48:31 +08:00
<maven-source-plugin.version>3.2.0</maven-source-plugin.version>
2019-07-19 18:10:10 +08:00
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
2019-04-19 16:48:05 +08:00
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
2019-07-06 23:46:33 +08:00
<maven-war-plugin.version>3.2.3</maven-war-plugin.version>
2017-07-30 18:48:31 +08:00
</properties>
2015-11-28 21:04:47 +08:00
<build>
<plugins>
</plugins>
</build>
2016-09-03 18:34:16 +08:00
<licenses>
<license>
2017-06-30 21:56:15 +08:00
<name>GNU General Public License version 3</name>
<url>https://opensource.org/licenses/GPL-3.0</url>
2016-09-03 18:34:16 +08:00
</license>
</licenses>
2017-06-30 21:59:16 +08:00
2016-09-03 18:34:16 +08:00
<scm>
<tag>master</tag>
<url>https://github.com/xuxueli/xxl-job.git</url>
<connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
<developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
</scm>
<developers>
<developer>
<id>XXL</id>
<name>xuxueli</name>
<email>931591021@qq.com</email>
<url>https://github.com/xuxueli</url>
</developer>
</developers>
2016-09-05 21:07:07 +08:00
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
2019-04-19 16:48:05 +08:00
<version>${maven-source-plugin.version}</version>
2016-09-05 21:07:07 +08:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2019-04-19 16:48:05 +08:00
<version>${maven-javadoc-plugin.version}</version>
2016-09-05 21:07:07 +08:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
2019-05-23 17:44:24 +08:00
<configuration>
<doclint>none</doclint>
</configuration>
2016-09-05 21:07:07 +08:00
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
2019-04-19 16:48:05 +08:00
<version>${maven-gpg-plugin.version}</version>
2016-09-06 18:21:42 +08:00
<configuration>
<useAgent>false</useAgent>
</configuration>
2016-09-05 21:07:07 +08:00
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
2015-11-28 21:04:47 +08:00
</project>