-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
41 changed files
with
62 additions
and
1,726 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
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import groovy.xml.XmlSlurper | ||
|
||
def parentPom = new XmlSlurper().parse( new File( basedir, 'pom.xml' ) ) | ||
def parentPom = new XmlSlurper().parse(new File(basedir, 'pom.xml')) | ||
assert parentPom.version == '1.2.1-SNAPSHOT' | ||
|
||
def moduleA1 = new XmlSlurper().parse( new File( basedir, 'module-a1/pom.xml' ) ) | ||
def moduleA1 = new XmlSlurper().parse(new File(basedir, 'module-a1/pom.xml')) | ||
assert moduleA1.parent.version == '1.2.1-SNAPSHOT' | ||
assert moduleA1.version == '2.0.7-SNAPSHOT' | ||
|
||
def moduleA2 = new XmlSlurper().parse( new File( basedir, 'module-a2/pom.xml' ) ) | ||
def moduleA2 = new XmlSlurper().parse(new File(basedir, 'module-a2/pom.xml')) | ||
assert moduleA2.parent.version == '1.2.1-SNAPSHOT' | ||
assert moduleA2.version == '1.2.1-SNAPSHOT' | ||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
invoker.goals=${project.groupId}:${project.artifactId}:${project.version}:set -DnewVersion=1.2.1-SNAPSHOT -DupdateMatchingVersions=false | ||
invoker.nonRecursive=true | ||
invoker.goals=${project.groupId}:${project.artifactId}:${project.version}:set \ | ||
-DnewVersion=1.2.1-SNAPSHOT \ | ||
-DupdateMatchingVersions=false |
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
Oops, something went wrong.