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/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/pom.xml')
-rw-r--r-- | demo/pom.xml | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/demo/pom.xml b/demo/pom.xml deleted file mode 100644 index 5e8a8b6..0000000 --- a/demo/pom.xml +++ /dev/null @@ -1,44 +0,0 @@ -<?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</groupId> - <artifactId>pf4j-parent</artifactId> - <version>3.12.0-SNAPSHOT</version> - </parent> - - <modelVersion>4.0.0</modelVersion> - <groupId>org.pf4j.demo</groupId> - <artifactId>pf4j-demo-parent</artifactId> - <version>3.12.0-SNAPSHOT</version> - <packaging>pom</packaging> - <name>Demo Parent</name> - - <properties> - <javadoc.disabled>true</javadoc.disabled> - <deploy.disabled>true</deploy.disabled> - <source.disabled>true</source.disabled> - </properties> - - <build> - <resources> - <resource> - <filtering>false</filtering> - <directory>src/main/java</directory> - <excludes> - <exclude>**/*.java</exclude> - </excludes> - </resource> - <resource> - <directory>src/main/resources</directory> - </resource> - </resources> - </build> - - <modules> - <module>app</module> - <module>api</module> - <module>plugins</module> - </modules> - -</project> |