pom.xml 4.0 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>${xxl-job.version}</version>
  7. <packaging>pom</packaging>
  8. <name>xxl-job</name>
  9. <description>A lightweight distributed task scheduling framework.</description>
  10. <url>http://www.xuxueli.com/</url>
  11. <modules>
  12. <module>xxl-job-admin</module>
  13. <module>xxl-job-core</module>
  14. <module>xxl-job-executor-example</module>
  15. </modules>
  16. <properties>
  17. <xxl-job.version>1.4.1</xxl-job.version>
  18. <spring.version>3.2.14.RELEASE</spring.version>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.1</version>
  26. <configuration>
  27. <source>1.6</source>
  28. <target>1.6</target>
  29. <encoding>UTF8</encoding>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-war-plugin</artifactId>
  35. <version>2.2</version>
  36. <configuration>
  37. <archiveClasses>false</archiveClasses>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <version>2.19.1</version>
  44. <configuration>
  45. <skip>true</skip>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. <licenses>
  51. <license>
  52. <name>GNU General Public License, version 2</name>
  53. <url>http://opensource.org/licenses/GPL-2.0</url>
  54. </license>
  55. </licenses>
  56. <scm>
  57. <tag>master</tag>
  58. <url>https://github.com/xuxueli/xxl-job.git</url>
  59. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  60. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  61. </scm>
  62. <developers>
  63. <developer>
  64. <id>XXL</id>
  65. <name>xuxueli</name>
  66. <email>931591021@qq.com</email>
  67. <url>https://github.com/xuxueli</url>
  68. </developer>
  69. </developers>
  70. <profiles>
  71. <profile>
  72. <id>release</id>
  73. <build>
  74. <plugins>
  75. <!-- Source -->
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-source-plugin</artifactId>
  79. <version>2.2.1</version>
  80. <executions>
  81. <execution>
  82. <phase>package</phase>
  83. <goals>
  84. <goal>jar-no-fork</goal>
  85. </goals>
  86. </execution>
  87. </executions>
  88. </plugin>
  89. <!-- Javadoc -->
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-javadoc-plugin</artifactId>
  93. <version>2.9.1</version>
  94. <executions>
  95. <execution>
  96. <phase>package</phase>
  97. <goals>
  98. <goal>jar</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. <!-- GPG -->
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-gpg-plugin</artifactId>
  107. <version>1.6</version>
  108. <configuration>
  109. <useAgent>false</useAgent>
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <phase>verify</phase>
  114. <goals>
  115. <goal>sign</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <distributionManagement>
  123. <snapshotRepository>
  124. <id>oss</id>
  125. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  126. </snapshotRepository>
  127. <repository>
  128. <id>oss</id>
  129. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  130. </repository>
  131. </distributionManagement>
  132. </profile>
  133. </profiles>
  134. </project>