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 2.6KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>2.6.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>pf4j</artifactId>
  10. <version>2.6.0</version>
  11. <packaging>jar</packaging>
  12. <name>PF4J</name>
  13. <description>Plugin Framework for Java</description>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <configuration>
  20. <compilerArgument>-proc:none</compilerArgument>
  21. </configuration>
  22. </plugin>
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-jar-plugin</artifactId>
  26. <configuration>
  27. <archive>
  28. <manifestEntries>
  29. <Automatic-Module-Name>org.pf4j</Automatic-Module-Name>
  30. </manifestEntries>
  31. </archive>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-api</artifactId>
  40. <version>${slf4j.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-log4j12</artifactId>
  45. <version>${slf4j.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.zafarkhaja</groupId>
  50. <artifactId>java-semver</artifactId>
  51. <version>0.9.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.ow2.asm</groupId>
  55. <artifactId>asm</artifactId>
  56. <version>${asm.version}</version>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <version>${junit.version}</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mockito</groupId>
  67. <artifactId>mockito-core</artifactId>
  68. <version>${mockito.version}</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>