pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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.0.2-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>${project.artifactId}</name>
  9. <description>A lightweight distributed task scheduling framework.</description>
  10. <url>http://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. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  20. <maven.compiler.source>1.7</maven.compiler.source>
  21. <maven.compiler.target>1.7</maven.compiler.target>
  22. <maven.test.skip>true</maven.test.skip>
  23. <xxl-rpc.version>1.2.1</xxl-rpc.version>
  24. <spring-boot.version>1.5.18.RELEASE</spring-boot.version>
  25. <mybatis-spring-boot-starter.version>1.3.2</mybatis-spring-boot-starter.version>
  26. <mysql-connector-java.version>5.1.47</mysql-connector-java.version>
  27. <spring.version>4.3.21.RELEASE</spring.version>
  28. <slf4j-api.version>1.7.25</slf4j-api.version>
  29. <freemarker.version>2.3.28</freemarker.version>
  30. <junit.version>4.12</junit.version>
  31. <commons-exec.version>1.3</commons-exec.version>
  32. <commons-lang3.version>3.8.1</commons-lang3.version>
  33. <groovy.version>2.5.5</groovy.version>
  34. <quartz.version>2.3.0</quartz.version>
  35. <jackson.version>2.9.8</jackson.version>
  36. <jetty-server.version>9.2.26.v20180806</jetty-server.version>
  37. </properties>
  38. <build>
  39. <plugins>
  40. </plugins>
  41. </build>
  42. <licenses>
  43. <license>
  44. <name>GNU General Public License version 3</name>
  45. <url>https://opensource.org/licenses/GPL-3.0</url>
  46. </license>
  47. </licenses>
  48. <scm>
  49. <tag>master</tag>
  50. <url>https://github.com/xuxueli/xxl-job.git</url>
  51. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  52. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  53. </scm>
  54. <developers>
  55. <developer>
  56. <id>XXL</id>
  57. <name>xuxueli</name>
  58. <email>931591021@qq.com</email>
  59. <url>https://github.com/xuxueli</url>
  60. </developer>
  61. </developers>
  62. <profiles>
  63. <profile>
  64. <id>release</id>
  65. <build>
  66. <plugins>
  67. <!-- Source -->
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-source-plugin</artifactId>
  71. <version>3.0.1</version>
  72. <executions>
  73. <execution>
  74. <phase>package</phase>
  75. <goals>
  76. <goal>jar-no-fork</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <!-- Javadoc -->
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-javadoc-plugin</artifactId>
  85. <version>3.0.0</version>
  86. <executions>
  87. <execution>
  88. <phase>package</phase>
  89. <goals>
  90. <goal>jar</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. <!-- GPG -->
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-gpg-plugin</artifactId>
  99. <version>1.6</version>
  100. <configuration>
  101. <useAgent>false</useAgent>
  102. </configuration>
  103. <executions>
  104. <execution>
  105. <phase>verify</phase>
  106. <goals>
  107. <goal>sign</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. <distributionManagement>
  115. <snapshotRepository>
  116. <id>oss</id>
  117. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  118. </snapshotRepository>
  119. <repository>
  120. <id>oss</id>
  121. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  122. </repository>
  123. </distributionManagement>
  124. </profile>
  125. </profiles>
  126. </project>