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.

11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
11 lat temu
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>pf4j-parent</artifactId>
  6. <version>3.12.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>org.pf4j.demo</groupId>
  10. <artifactId>pf4j-demo-parent</artifactId>
  11. <version>3.12.0-SNAPSHOT</version>
  12. <packaging>pom</packaging>
  13. <name>Demo Parent</name>
  14. <properties>
  15. <javadoc.disabled>true</javadoc.disabled>
  16. <deploy.disabled>true</deploy.disabled>
  17. <source.disabled>true</source.disabled>
  18. </properties>
  19. <build>
  20. <resources>
  21. <resource>
  22. <filtering>false</filtering>
  23. <directory>src/main/java</directory>
  24. <excludes>
  25. <exclude>**/*.java</exclude>
  26. </excludes>
  27. </resource>
  28. <resource>
  29. <directory>src/main/resources</directory>
  30. </resource>
  31. </resources>
  32. </build>
  33. <modules>
  34. <module>app</module>
  35. <module>api</module>
  36. <module>plugins</module>
  37. </modules>
  38. </project>