Updated the parent pom version to 2.6 & fixed the agent version

This commit is contained in:
Claudiu Guiman 2016-12-05 10:01:06 -08:00
parent a683c6ef62
commit 2283b04433
1 changed files with 18 additions and 16 deletions

34
pom.xml
View File

@ -3,11 +3,11 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.642.1</version>
<version>2.6</version>
</parent>
<artifactId>azure-vm-agents</artifactId>
<version>0.4.0-BETA</version>
<version>0.4.0</version>
<packaging>hpi</packaging>
<name>Azure VM Agents</name>
<description>Provisions agents on Azure cloud</description>
@ -18,6 +18,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jackson.version>2.5.4</jackson.version>
<azuresdk.version>0.9.4</azuresdk.version>
<jenkins.version>1.642.1</jenkins.version>
<java.level>7</java.level>
</properties>
<licenses>
@ -45,14 +47,14 @@
<email>clguiman@microsoft.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-keyvault</artifactId>
@ -83,7 +85,7 @@
<artifactId>azure-svc-mgmt</artifactId>
<version>${azuresdk.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
@ -111,7 +113,7 @@
<artifactId>httpclient</artifactId>
<version>4.5</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
@ -123,7 +125,7 @@
<version>1.3</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:ssh://git@github.com/jenkinsci/azure-vm-agents-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/azure-vm-agents-plugin.git</developerConnection>
@ -144,18 +146,18 @@
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
</plugin>
<build>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
</plugin>
</plugins>
</build>
</plugins>
</build>
</project>