You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>ro.fortsoft.pf4j</groupId>
  5. <artifactId>pom</artifactId>
  6. <version>0.4-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>ro.fortsoft.pf4j.demo</groupId>
  10. <artifactId>pom</artifactId>
  11. <version>0.4-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. </build>
  35. <modules>
  36. <module>app</module>
  37. <module>api</module>
  38. <module>plugin1</module>
  39. <module>plugin2</module>
  40. </modules>
  41. </project>