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

12345678910111213141516171819202122232425262728293031323334353637
  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.demo</groupId>
  5. <artifactId>pf4j-demo-parent</artifactId>
  6. <version>3.3.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>pf4j-demo-api</artifactId>
  10. <version>3.3.0-SNAPSHOT</version>
  11. <packaging>jar</packaging>
  12. <name>Demo Api</name>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-deploy-plugin</artifactId>
  17. <configuration>
  18. <skip>true</skip>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.pf4j</groupId>
  26. <artifactId>pf4j</artifactId>
  27. <version>${project.version}</version>
  28. <!-- !!! VERY IMPORTANT -->
  29. <scope>provided</scope>
  30. </dependency>
  31. </dependencies>
  32. </project>