summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2014-05-02 18:26:50 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2014-05-02 18:26:50 +0200
commit345c0d8f7738aab20d2b45fd6c5ebf911b75e2fa (patch)
tree0ee3919571bab4c92d9ed306c671b879db9b12ff /pom.xml
downloadactivemq-plugin-345c0d8f7738aab20d2b45fd6c5ebf911b75e2fa.tar.gz
activemq-plugin-345c0d8f7738aab20d2b45fd6c5ebf911b75e2fa.tar.bz2
activemq-plugin-345c0d8f7738aab20d2b45fd6c5ebf911b75e2fa.tar.xz
activemq-plugin-345c0d8f7738aab20d2b45fd6c5ebf911b75e2fa.zip
o Initial import of ActiveMQ plugin for Jenkins.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml74
1 files changed, 74 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..28f454f
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,74 @@
+<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>org.jenkins-ci.plugins</groupId>
+ <artifactId>plugin</artifactId>
+ <version>1.560</version>
+ </parent>
+
+ <artifactId>activemq</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>${hpi.type}</packaging>
+
+ <properties>
+ <version.activemq>5.9.1</version.activemq>
+ <hpi.type>hpi</hpi.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>
+ </dependencies>
+
+ <licenses>
+ <license>
+ <name>MIT license</name>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <id>trygvis</id>
+ <name>Trygve Laugstol</name>
+ <email>trygvis@inamo.no</email>
+ </developer>
+ </developers>
+
+ <scm>
+ <connection>scm:git:ssh://github.com/jenkinsci/activemq.git</connection>
+ <developerConnection>scm:git:ssh://git@github.com/jenkinsci/activemq.git</developerConnection>
+ <url>https://github.com/jenkinsci/activemq</url>
+ </scm>
+
+ <repositories>
+ <repository>
+ <id>repo.jenkins-ci.org</id>
+ <url>http://repo.jenkins-ci.org/public/</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repo.jenkins-ci.org</id>
+ <url>http://repo.jenkins-ci.org/public/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <profiles>
+ <profile>
+ <id>idea</id>
+ <properties>
+ <hpi.type>jar</hpi.type>
+ </properties>
+ </profile>
+ </profiles>
+
+</project>