Skip to content
This repository has been archived by the owner on May 9, 2019. It is now read-only.

Commit

Permalink
creating temp release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Kerwin committed Oct 12, 2016
1 parent 458cd48 commit f57c5ef
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.blackducksoftware.integration</groupId>
<artifactId>common-maven-parent</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4</version>
<packaging>pom</packaging>

<name>Common Maven Parent POM</name>
Expand Down Expand Up @@ -260,6 +260,28 @@
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-jar</argument>
<argument>/Users/ekerwin/Documents/github-release-1.0.0.jar</argument>
<argument>${project.artifactId}</argument>
<argument>${version}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
Expand Down Expand Up @@ -400,6 +422,10 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit f57c5ef

Please sign in to comment.