summaryrefslogtreecommitdiff
path: root/calamus-nexus-plugin/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'calamus-nexus-plugin/pom.xml')
-rw-r--r--calamus-nexus-plugin/pom.xml75
1 files changed, 75 insertions, 0 deletions
diff --git a/calamus-nexus-plugin/pom.xml b/calamus-nexus-plugin/pom.xml
new file mode 100644
index 0000000..5060827
--- /dev/null
+++ b/calamus-nexus-plugin/pom.xml
@@ -0,0 +1,75 @@
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>io.trygvis.calamus</groupId>
+ <artifactId>calamus</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>calamus-nexus-plugin</artifactId>
+ <name>${project.groupId}:${project.artifactId}</name>
+ <packaging>${nexus-plugin.type}</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>
+ <artifactId>activemq-client</artifactId>
+ <version>${version.activemq}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.activemq</groupId>
+ <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>
+ <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>
+ <version>${version.nexus}</version>
+ <!--<type>jar</type>-->
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.sonatype.nexus</groupId>
+ <artifactId>nexus-plugin-testsupport</artifactId>
+ <version>${version.nexus}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.nexus</groupId>
+ <artifactId>nexus-plugin-bundle-maven-plugin</artifactId>
+ <version>1.2</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ <profiles>
+ <profile>
+ <id>idea</id>
+ <properties>
+ <nexus-plugin.type>jar</nexus-plugin.type>
+ </properties>
+ </profile>
+ </profiles>
+</project>