pom.xml 3.9 KB

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