diff options
Diffstat (limited to 'calamus-nexus-plugin/pom.xml')
-rw-r--r-- | calamus-nexus-plugin/pom.xml | 45 |
1 files changed, 18 insertions, 27 deletions
diff --git a/calamus-nexus-plugin/pom.xml b/calamus-nexus-plugin/pom.xml index 5060827..464daa6 100644 --- a/calamus-nexus-plugin/pom.xml +++ b/calamus-nexus-plugin/pom.xml @@ -1,21 +1,26 @@ -<project> +<?xml version="1.0" encoding="UTF-8"?> +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> - <groupId>io.trygvis.calamus</groupId> - <artifactId>calamus</artifactId> + <groupId>org.sonatype.nexus.examples</groupId> + <artifactId>nexus-examples</artifactId> <version>1.0-SNAPSHOT</version> </parent> + + <groupId>io.trygvis.calamus</groupId> <artifactId>calamus-nexus-plugin</artifactId> + <version>1.0-SNAPSHOT</version> + <name>${project.groupId}:${project.artifactId}</name> - <packaging>${nexus-plugin.type}</packaging> + <packaging>nexus-plugin</packaging> <properties> <version.activemq>5.9.1</version.activemq> <version.nexus>2.8.0-01</version.nexus> - <!-- - Support for loading Nexus projects in Intellij IDEA; as it doesn't handle the 'nexus-plugin' packaging WRT to dependency calculations. - --> - <nexus-plugin.type>nexus-plugin</nexus-plugin.type> </properties> + <dependencies> <dependency> <groupId>org.apache.activemq</groupId> @@ -27,24 +32,18 @@ <artifactId>activemq-pool</artifactId> <version>${version.activemq}</version> </dependency> - <dependency> - <groupId>org.sonatype.nexus</groupId> - <artifactId>nexus-plugin-api</artifactId> - <version>${version.nexus}</version> - <scope>provided</scope> - </dependency> + <!-- <dependency> <groupId>org.sonatype.nexus.plugins</groupId> - <artifactId>nexus-restlet1x-plugin</artifactId> + <artifactId>nexus-ui-extjs3-plugin</artifactId> <version>${version.nexus}</version> - <!--<type>${nexus-plugin.type}</type>--> <scope>provided</scope> </dependency> + --> <dependency> - <groupId>org.sonatype.nexus.plugins</groupId> - <artifactId>nexus-ui-extjs3-plugin</artifactId> + <groupId>org.sonatype.nexus</groupId> + <artifactId>nexus-plugin-api</artifactId> <version>${version.nexus}</version> - <!--<type>jar</type>--> <scope>provided</scope> </dependency> <dependency> @@ -64,12 +63,4 @@ </plugin> </plugins> </build> - <profiles> - <profile> - <id>idea</id> - <properties> - <nexus-plugin.type>jar</nexus-plugin.type> - </properties> - </profile> - </profiles> </project> |