pom.xml 858 B

1234567891011121314151617181920212223242526272829
  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>1.3.0-SNAPSHOT</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. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.1</version>
  19. <configuration>
  20. <source>1.6</source>
  21. <target>1.6</target>
  22. <encoding>UTF8</encoding>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. </project>