pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.xxl</groupId>
  5. <artifactId>xxl-job</artifactId>
  6. <version>${xxl-job.version}</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>xxl-job-admin</module>
  10. <module>xxl-job-core</module>
  11. <module>xxl-job-executor-example</module>
  12. </modules>
  13. <properties>
  14. <xxl-job.version>1.4.0</xxl-job.version>
  15. <spring.version>3.2.14.RELEASE</spring.version>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.1</version>
  23. <configuration>
  24. <source>1.6</source>
  25. <target>1.6</target>
  26. <encoding>UTF8</encoding>
  27. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-war-plugin</artifactId>
  32. <version>2.2</version>
  33. <configuration>
  34. <archiveClasses>false</archiveClasses>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-surefire-plugin</artifactId>
  40. <version>2.19.1</version>
  41. <configuration>
  42. <skip>true</skip>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>