diff options
author | Sebastian Schuberth <sschuberth@users.noreply.github.com> | 2024-06-23 21:59:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-23 22:59:16 +0300 |
commit | acf0a9f26190c49f508c5b187e9f2c671874d90d (patch) | |
tree | 51bb14d9e752983b752c1da97ec8910f5160d0c7 /demo/maven/api/pom.xml | |
parent | 1f303dafb976fb9121da871973a293d09fdee755 (diff) | |
download | pf4j-acf0a9f26190c49f508c5b187e9f2c671874d90d.tar.gz pf4j-acf0a9f26190c49f508c5b187e9f2c671874d90d.zip |
Consolidate demo projects in the "demo" directory (#584)
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> |