pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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>3.1.1</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. <properties>
  17. <!-- env -->
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  21. <maven.compiler.source>17</maven.compiler.source>
  22. <maven.compiler.target>17</maven.compiler.target>
  23. <maven.test.skip>true</maven.test.skip>
  24. <!-- plugin -->
  25. <maven-source-plugin.version>3.3.1</maven-source-plugin.version>
  26. <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
  27. <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
  28. <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version>
  29. <!-- base -->
  30. <slf4j-api.version>2.0.17</slf4j-api.version>
  31. <junit-jupiter.version>5.13.1</junit-jupiter.version>
  32. <jakarta.annotation-api.version>3.0.0</jakarta.annotation-api.version>
  33. <!-- net -->
  34. <netty.version>4.2.2.Final</netty.version>
  35. <gson.version>2.13.1</gson.version>
  36. <!-- spring -->
  37. <spring-boot.version>3.5.3</spring-boot.version>
  38. <spring.version>6.2.8</spring.version>
  39. <!-- db -->
  40. <mybatis-spring-boot-starter.version>3.0.4</mybatis-spring-boot-starter.version>
  41. <mysql-connector-j.version>9.3.0</mysql-connector-j.version>
  42. <!-- dynamic language -->
  43. <groovy.version>4.0.27</groovy.version>
  44. </properties>
  45. <build>
  46. <plugins>
  47. </plugins>
  48. </build>
  49. <licenses>
  50. <license>
  51. <name>GNU General Public License version 3</name>
  52. <url>https://opensource.org/licenses/GPL-3.0</url>
  53. </license>
  54. </licenses>
  55. <scm>
  56. <tag>master</tag>
  57. <url>https://github.com/xuxueli/xxl-job.git</url>
  58. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  59. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  60. </scm>
  61. <developers>
  62. <developer>
  63. <id>XXL</id>
  64. <name>xuxueli</name>
  65. <email>931591021@qq.com</email>
  66. <url>https://github.com/xuxueli</url>
  67. </developer>
  68. </developers>
  69. <profiles>
  70. <profile>
  71. <id>release</id>
  72. <activation>
  73. <activeByDefault>true</activeByDefault>
  74. </activation>
  75. <modules>
  76. <module>xxl-job-core</module>
  77. </modules>
  78. <build>
  79. <plugins>
  80. <!-- Source -->
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-source-plugin</artifactId>
  84. <version>${maven-source-plugin.version}</version>
  85. <executions>
  86. <execution>
  87. <phase>package</phase>
  88. <goals>
  89. <goal>jar-no-fork</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <!-- Javadoc -->
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-javadoc-plugin</artifactId>
  98. <version>${maven-javadoc-plugin.version}</version>
  99. <executions>
  100. <execution>
  101. <phase>package</phase>
  102. <goals>
  103. <goal>jar</goal>
  104. </goals>
  105. <configuration>
  106. <doclint>none</doclint>
  107. </configuration>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <!-- GPG -->
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-gpg-plugin</artifactId>
  115. <version>${maven-gpg-plugin.version}</version>
  116. <configuration>
  117. <useAgent>false</useAgent>
  118. </configuration>
  119. <executions>
  120. <execution>
  121. <phase>verify</phase>
  122. <goals>
  123. <goal>sign</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. <!-- maven central -->
  129. <plugin>
  130. <groupId>org.sonatype.central</groupId>
  131. <artifactId>central-publishing-maven-plugin</artifactId>
  132. <version>${central-publishing-maven-plugin.version}</version>
  133. <extensions>true</extensions>
  134. <configuration>
  135. <publishingServerId>central</publishingServerId>
  136. <excludeArtifacts>
  137. <artifact>xxl-job-admin</artifact>
  138. <artifact>xxl-job-executor-samples</artifact>
  139. <artifact>xxl-job-executor-sample-frameless</artifact>
  140. <artifact>xxl-job-executor-sample-springboot</artifact>
  141. <artifact>xxl-job-executor-sample-springboot-ai</artifact>
  142. </excludeArtifacts>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </profile>
  148. </profiles>
  149. </project>