Skip to content

Commit

Permalink
Fix jenkins plugin version according to #INFRA-588
Browse files Browse the repository at this point in the history
  • Loading branch information
phuonghuynh committed Jul 12, 2017
1 parent 0c4e9d4 commit 42f2877
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions pom.xml
@@ -1,18 +1,17 @@
<?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">
<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.3</version>
<relativePath/>
<version>2.5</version>
<relativePath />
</parent>

<artifactId>aws-codecommit-trigger</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.1-SNAPSHOT</version>
<packaging>hpi</packaging>

<url>https://wiki.jenkins.io/display/JENKINS/AWS+CodeCommit+Trigger+Plugin</url>
Expand Down Expand Up @@ -153,14 +152,31 @@
</configuration>
</plugin>

<plugin>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>it</releaseProfiles><!-- run integration tests -->
<releaseProfiles>release-profile</releaseProfiles>
</configuration>
</plugin-->

<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<enableSshAgent>true</enableSshAgent>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushReleases>true</pushReleases>
<flowInitContext>
<masterBranchName>release</masterBranchName>
<developBranchName>master</developBranchName>
<versionTagPrefix>v@</versionTagPrefix>
<releaseBranchPrefix>release-</releaseBranchPrefix>
</flowInitContext>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 42f2877

Please sign in to comment.