forked from mojohaus/versions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes mojohaus#1140: Added showVersionless (default true)
showVersionless false filters out dependencies managed outside of the reactor verbose true adds the source of these dependencies
- Loading branch information
1 parent
814c9b1
commit bbfae66
Showing
17 changed files
with
251 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
<groupId>org.codehaus.mojo.versions</groupId> | ||
<artifactId>versions</artifactId> | ||
<version>2.18.0</version> | ||
<version>2.18.1-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Versions</name> | ||
|
@@ -104,7 +104,7 @@ | |
<scm> | ||
<connection>scm:git:https://github.com/mojohaus/versions.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/mojohaus/versions.git</developerConnection> | ||
<tag>2.18.0</tag> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/mojohaus/versions/tree/master</url> | ||
</scm> | ||
|
||
|
@@ -147,7 +147,7 @@ | |
<!-- execute ITS in parallel by default --> | ||
<invoker.parallelThreads>0.75C</invoker.parallelThreads> | ||
<!-- mono-module doesn't require site:stage for scm-publish --> | ||
<project.build.outputTimestamp>2024-11-13T20:43:32Z</project.build.outputTimestamp> | ||
<project.build.outputTimestamp>2024-11-13T20:44:06Z</project.build.outputTimestamp> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
|
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
45 changes: 0 additions & 45 deletions
45
.../it-display-dependency-updates-009-processDependencyManagementTransitive-false/verify.bsh
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
...-display-dependency-updates-009-processDependencyManagementTransitive-false/verify.groovy
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,4 @@ | ||
def buildLog = new File( basedir, "build.log").text | ||
assert buildLog =~ /\Qlocalhost:dummy-api\E\s*\.*\s*1\.1\s+->\s+3\.0/ | ||
assert !(buildLog =~ /\Qlocalhost:dummy-impl\E\s*\.*\s*1\.2\s+->\s+2\.2/) | ||
assert buildLog =~ /\Qlocalhost:dummy-api-impl-bom-pom\E\s*\.*\s*1\.0\s+->\s+2\.0/ |
45 changes: 0 additions & 45 deletions
45
...t/it-display-dependency-updates-009-processDependencyManagementTransitive-true/verify.bsh
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
...t-display-dependency-updates-009-processDependencyManagementTransitive-true/verify.groovy
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,4 @@ | ||
def buildLog = new File( basedir, "build.log").text | ||
assert buildLog =~ /\Qlocalhost:dummy-api\E\s*\.*\s*1\.1\s+->\s+3\.0/ | ||
assert buildLog =~ /\Qlocalhost:dummy-impl\E\s*\.*\s*1\.2\s+->\s+2\.2/ | ||
assert !(buildLog =~ /\Qlocalhost:dummy-api-impl-bom-pom\E\s*\.*\s*1\.0\s+->\s+2\.0/) |
Oops, something went wrong.