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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <modelVersion>4.0.0</modelVersion>
  4. <groupId>${groupId}</groupId>
  5. <artifactId>${artifactId}</artifactId>
  6. <version>${version}</version>
  7. <packaging>pom</packaging>
  8. <name>PF4J Quickstart</name>
  9. <repositories>
  10. <repository>
  11. <id>sonatype-nexus-snapshots</id>
  12. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  13. <releases>
  14. <enabled>false</enabled>
  15. </releases>
  16. <snapshots>
  17. <enabled>true</enabled>
  18. </snapshots>
  19. </repository>
  20. </repositories>
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <maven.compiler.release>8</maven.compiler.release>
  24. <pf4j.version>{{project.version}}</pf4j.version>
  25. <slf4j.version>1.7.7</slf4j.version>
  26. </properties>
  27. <build>
  28. <resources>
  29. <resource>
  30. <filtering>false</filtering>
  31. <directory>src/main/java</directory>
  32. <excludes>
  33. <exclude>**/*.java</exclude>
  34. </excludes>
  35. </resource>
  36. <resource>
  37. <directory>src/main/resources</directory>
  38. </resource>
  39. </resources>
  40. </build>
  41. </project>