Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pom.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>org.pf4j</groupId>
  5. <artifactId>pom</artifactId>
  6. <version>0.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>org.pf4j.demo</groupId>
  10. <artifactId>pom</artifactId>
  11. <version>0.1-SNAPSHOT</version>
  12. <packaging>pom</packaging>
  13. <name>PF4J Demo</name>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <build>
  22. <resources>
  23. <resource>
  24. <filtering>false</filtering>
  25. <directory>src/main/java</directory>
  26. <excludes>
  27. <exclude>**/*.java</exclude>
  28. </excludes>
  29. </resource>
  30. <resource>
  31. <directory>src/main/resources</directory>
  32. </resource>
  33. </resources>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>2.3.2</version>
  39. <configuration>
  40. <source>1.6</source>
  41. <target>1.6</target>
  42. <optimize>true</optimize>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. <modules>
  48. <module>app</module>
  49. <module>api</module>
  50. <module>plugin1</module>
  51. <module>plugin2</module>
  52. </modules>
  53. </project>