pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.xuxueli</groupId>
  5. <artifactId>xxl-job</artifactId>
  6. <version>2.2.1-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>${project.artifactId}</name>
  9. <description>A distributed task scheduling framework.</description>
  10. <url>https://www.xuxueli.com/</url>
  11. <modules>
  12. <module>xxl-job-core</module>
  13. <module>xxl-job-admin</module>
  14. <module>xxl-job-executor-samples</module>
  15. </modules>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  21. <version>${spring-cloud-alibaba.version}</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. </dependencies>
  26. </dependencyManagement>
  27. <properties>
  28. <spring-cloud-alibaba.version>2.2.1.RELEASE</spring-cloud-alibaba.version>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  31. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  32. <maven.compiler.source>1.8</maven.compiler.source>
  33. <maven.compiler.target>1.8</maven.compiler.target>
  34. <maven.test.skip>true</maven.test.skip>
  35. <netty-all.version>4.1.50.Final</netty-all.version>
  36. <gson.version>2.8.6</gson.version>
  37. <spring.version>5.2.7.RELEASE</spring.version>
  38. <spring-boot.version>2.3.0.RELEASE</spring-boot.version>
  39. <mybatis-spring-boot-starter.version>2.1.3</mybatis-spring-boot-starter.version>
  40. <mysql-connector-java.version>8.0.20</mysql-connector-java.version>
  41. <slf4j-api.version>1.7.30</slf4j-api.version>
  42. <junit.version>4.13</junit.version>
  43. <javax.annotation-api.version>1.3.2</javax.annotation-api.version>
  44. <groovy.version>3.0.4</groovy.version>
  45. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  46. <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
  47. <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
  48. <maven-war-plugin.version>3.3.0</maven-war-plugin.version>
  49. </properties>
  50. <build>
  51. <plugins>
  52. </plugins>
  53. </build>
  54. <licenses>
  55. <license>
  56. <name>GNU General Public License version 3</name>
  57. <url>https://opensource.org/licenses/GPL-3.0</url>
  58. </license>
  59. </licenses>
  60. <scm>
  61. <tag>master</tag>
  62. <url>https://github.com/xuxueli/xxl-job.git</url>
  63. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  64. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  65. </scm>
  66. <developers>
  67. <developer>
  68. <id>XXL</id>
  69. <name>xuxueli</name>
  70. <email>931591021@qq.com</email>
  71. <url>https://github.com/xuxueli</url>
  72. </developer>
  73. </developers>
  74. <profiles>
  75. <profile>
  76. <id>release</id>
  77. <build>
  78. <plugins>
  79. <!-- Source -->
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-source-plugin</artifactId>
  83. <version>${maven-source-plugin.version}</version>
  84. <executions>
  85. <execution>
  86. <phase>package</phase>
  87. <goals>
  88. <goal>jar-no-fork</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <!-- Javadoc -->
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-javadoc-plugin</artifactId>
  97. <version>${maven-javadoc-plugin.version}</version>
  98. <executions>
  99. <execution>
  100. <phase>package</phase>
  101. <goals>
  102. <goal>jar</goal>
  103. </goals>
  104. <configuration>
  105. <doclint>none</doclint>
  106. </configuration>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <!-- GPG -->
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-gpg-plugin</artifactId>
  114. <version>${maven-gpg-plugin.version}</version>
  115. <configuration>
  116. <useAgent>false</useAgent>
  117. </configuration>
  118. <executions>
  119. <execution>
  120. <phase>verify</phase>
  121. <goals>
  122. <goal>sign</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. <distributionManagement>
  130. <snapshotRepository>
  131. <id>oss</id>
  132. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  133. </snapshotRepository>
  134. <repository>
  135. <id>oss</id>
  136. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  137. </repository>
  138. </distributionManagement>
  139. </profile>
  140. </profiles>
  141. </project>