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.

pom.xml 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>pf4j-parent</artifactId>
  6. <version>0.10.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>ro.fortsoft.pf4j.demo</groupId>
  10. <artifactId>pf4j-demo-parent</artifactId>
  11. <version>0.10.0-SNAPSHOT</version>
  12. <packaging>pom</packaging>
  13. <name>Demo Parent</name>
  14. <build>
  15. <resources>
  16. <resource>
  17. <filtering>false</filtering>
  18. <directory>src/main/java</directory>
  19. <excludes>
  20. <exclude>**/*.java</exclude>
  21. </excludes>
  22. </resource>
  23. <resource>
  24. <directory>src/main/resources</directory>
  25. </resource>
  26. </resources>
  27. </build>
  28. <modules>
  29. <module>app</module>
  30. <module>api</module>
  31. <module>plugins</module>
  32. </modules>
  33. </project>