-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sarah Tattersall
committed
Feb 21, 2014
1 parent
bc235cb
commit 0b9abda
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,18 @@ | |
<artifactId>PIPE</artifactId> | ||
|
||
<packaging>pom</packaging> | ||
<version>1.0</version> | ||
<version>1.0-SNAPSHOT</version> | ||
<name>PIPE Parent Project</name> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
|
||
<scm> | ||
<developerConnection>scm:git:[email protected]:sarahtattersall/PIPE.git</developerConnection> | ||
</scm> | ||
|
||
<modules> | ||
<module>pipe-gui</module> | ||
<module>pipe-core</module> | ||
|
@@ -32,6 +37,12 @@ | |
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>2.4.2</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#release configuration | ||
#Fri Feb 21 15:58:13 GMT 2014 | ||
preparationGoals=clean verify | ||
pushChanges=true | ||
exec.snapshotReleasePluginAllowed=false | ||
scm.commentPrefix=[maven-release-plugin] | ||
remoteTagging=true | ||
completedPhase=check-poms | ||
scm.tagNameFormat=@{project.artifactId}-@{project.version} | ||
scm.url=scm\:git\:[email protected]\:sarahtattersall/PIPE.git |