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.
44 lines
1.3 KiB
44 lines
1.3 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.demo</groupId> |
|
<artifactId>pom</artifactId> |
|
<version>0.3-SNAPSHOT</version> |
|
</parent> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
<artifactId>pf4j-demo-api</artifactId> |
|
<version>0.3-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
<name>Demo Api</name> |
|
|
|
<licenses> |
|
<license> |
|
<name>The Apache Software License, Version 2.0</name> |
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
|
<distribution>repo</distribution> |
|
</license> |
|
</licenses> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-deploy-plugin</artifactId> |
|
<configuration> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>ro.fortsoft.pf4j</groupId> |
|
<artifactId>pf4j</artifactId> |
|
<version>${project.version}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
</project>
|
|
|