
* Use openstack4j library instead of raw HTTP requests * Added latest openstack4j-3.0.3-SNAPSHOT to dependencies * Added re-authentication of openstack4j client * Minor code refactoring Change-Id: I94d7e7d724a117ccfe63fc4aeaf73f1b0ef27870
150 lines
4.9 KiB
XML
150 lines
4.9 KiB
XML
<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.15</version>
|
|
</parent>
|
|
|
|
<name>Murano Deployment Manager Jenkins Plugin</name>
|
|
|
|
<description>
|
|
This plugin provides integration with Openstack Murano
|
|
</description>
|
|
|
|
<url>https://wiki.jenkins-ci.org/display/JENKINS/Murano+Deployment+Manager+Plugin</url>
|
|
<artifactId>murano-deployment-manager</artifactId>
|
|
<packaging>hpi</packaging>
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache V2 License</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Alexey Khivin</name>
|
|
<email>akhivin@gmail.com</email>
|
|
</developer>
|
|
<developer>
|
|
<name>Nikolay Mahotkin</name>
|
|
<email>nmakhotkin@mirantis.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<java.level>8</java.level>
|
|
<jenkins.version>2.23</jenkins.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<openstack4jversion>3.0.3-SNAPSHOT</openstack4jversion>
|
|
<openstack4jConnectorVersion>3.0.2</openstack4jConnectorVersion>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>st-snapshots</id>
|
|
<name>sonatype-snapshots</name>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</repository>
|
|
<repository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<name>Jenkins Repository</name>
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jgit-repository</id>
|
|
<name>Eclipse JGit Repository</name>
|
|
<url>http://download.eclipse.org/jgit/maven</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-http</artifactId>
|
|
<version>1.0-beta-6</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
|
|
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
|
|
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>RELEASE</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.pacesys</groupId>
|
|
<artifactId>openstack4j-core</artifactId>
|
|
<version>${openstack4jversion}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.pacesys.openstack4j.connectors</groupId>
|
|
<artifactId>openstack4j-httpclient</artifactId>
|
|
<version>${openstack4jConnectorVersion}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.8.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
<version>2.7.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>credentials</artifactId>
|
|
<version>LATEST</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|