diff options
Diffstat (limited to 'demo/maven/api/pom.xml')
-rw-r--r-- | demo/maven/api/pom.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/demo/maven/api/pom.xml b/demo/maven/api/pom.xml new file mode 100644 index 0000000..615aa30 --- /dev/null +++ b/demo/maven/api/pom.xml @@ -0,0 +1,37 @@ +<?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>org.pf4j.demo</groupId> + <artifactId>pf4j-demo-parent</artifactId> + <version>3.12.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>pf4j-demo-api</artifactId> + <version>3.12.0-SNAPSHOT</version> + <packaging>jar</packaging> + <name>Demo Api</name> + + <build> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.pf4j</groupId> + <artifactId>pf4j</artifactId> + <version>${project.version}</version> + <!-- !!! VERY IMPORTANT --> + <scope>provided</scope> + </dependency> + </dependencies> + +</project> |