
A demo of deploying Tomcat using Ansible Playbook integrated with Murano Change-Id: I7c94c43577c16c8e7c677a0424acb70f5cec4583
78 lines
2.2 KiB
XML
78 lines
2.2 KiB
XML
<?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>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>2.11</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>com.mirantis.plugins</groupId>
|
|
<artifactId>murano-tomcat</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>hpi</packaging>
|
|
|
|
<properties>
|
|
<jenkins.version>1.625.3</jenkins.version>
|
|
<java.level>7</java.level>
|
|
<jenkins-test-harness.version>2.13</jenkins-test-harness.version>
|
|
</properties>
|
|
|
|
<name>Murano Tomcat Plugin</name>
|
|
<description>Murano plugin with Tomcat to deploy Jenkins builds</description>
|
|
<url>https://wiki.jenkins-ci.org/display/JENKINS/TODO+Plugin</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>https://repo.jenkins-ci.org/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.pacesys</groupId>
|
|
<artifactId>openstack4j-core</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.pacesys.openstack4j.connectors</groupId>
|
|
<artifactId>openstack4j-httpclient</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>credentials</artifactId>
|
|
<version>1.16.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>ssh-credentials</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|