mirror of https://github.com/pf4j/pf4j.git
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.
54 lines
1.8 KiB
54 lines
1.8 KiB
<?xml version="1.0"?> |
|
<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"> |
|
|
|
<parent> |
|
<groupId>ro.fortsoft.pf4j</groupId> |
|
<artifactId>pf4j-parent</artifactId> |
|
<version>0.13.0-SNAPSHOT</version> |
|
</parent> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
<artifactId>pf4j</artifactId> |
|
<version>0.13.0-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
<name>PF4J</name> |
|
<description>Plugin Framework for Java</description> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<compilerArgument>-proc:none</compilerArgument> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.zafarkhaja</groupId> |
|
<artifactId>java-semver</artifactId> |
|
<version>0.9.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>${junit.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<version>${mockito.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
</project>
|
|
|