-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JENKINS-58113] - Remove the Internal Maven Mode from PCT + Use maven from PATH when "-mvn" is not specified #194
Merged
oleg-nenashev
merged 13 commits into
jenkinsci:master
from
oleg-nenashev:JENKINS-58113-remove-maven-internal
Dec 24, 2019
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
2cc03f7
[JENKINS-58113] - Remove the Internal Maven Mode from PCT + Use maven…
oleg-nenashev 6781cc4
[JENKINS-58113] - Restore SCM Providers
oleg-nenashev ead8247
[JENKINS-58113] - Add some extra Javadoc
oleg-nenashev 0233e06
Merge remote-tracking branch 'jenkinsci/master' into JENKINS-58113-re…
oleg-nenashev 4ad3bfc
[JENKINS-58113] - Remove more dependencies after GAE removal
oleg-nenashev ea23cef
Merge branch 'JENKINS-58113-remove-maven-internal' of https://github.…
oleg-nenashev 20d3343
[maven-release-plugin] prepare release plugins-compat-tester-aggregat…
oleg-nenashev 857922b
[maven-release-plugin] prepare for next development iteration
oleg-nenashev 3e0a19c
Merge branch 'master' into JENKINS-58113-remove-maven-internal
oleg-nenashev fb65c86
Merge branch 'master' into JENKINS-58113-remove-maven-internal
oleg-nenashev ca2a087
[JENKINS-60582] - Check for Azure Settings file in the PluginCompatTe…
oleg-nenashev 091c3f1
[JENKINS-60582] - Debug the location in CI
oleg-nenashev 8dbbd56
[JENKINS-60582] - Apply the manual testing results in the path
oleg-nenashev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -4,16 +4,16 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.tests</groupId> | ||
<artifactId>plugins-compat-tester-aggregator</artifactId> | ||
<version>0.2.1-SNAPSHOT</version> | ||
<version>0.4.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>plugins-compat-tester</artifactId> | ||
<version>0.2.1-SNAPSHOT</version> | ||
<version>0.4.0-SNAPSHOT</version> | ||
<name>Plugins compatibility tester</name> | ||
<description>Jenkins Plugin Compatibility Tester (PCT) against latest released version</description> | ||
|
||
<properties> | ||
<maven.scm.providers.version>1.5</maven.scm.providers.version> | ||
<maven.scm.providers.version>1.5</maven.scm.providers.version> | ||
</properties> | ||
|
||
<dependencies> | ||
|
@@ -24,65 +24,42 @@ | |
<dependency> | ||
<groupId>org.jenkins-ci.tests</groupId> | ||
<artifactId>plugins-compat-tester-model</artifactId> | ||
<version>0.2.1-SNAPSHOT</version> | ||
<version>0.4.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.main</groupId> | ||
<artifactId>jenkins-core</artifactId> | ||
</dependency> | ||
|
||
<!-- Upper bounds between core and Maven Embedder --> | ||
<!-- TODO: All of that stuff happens due to Maven detaching. Would it be sane to include Maven Plugin 3.0 as a JAR instead? --> | ||
|
||
<dependency> | ||
<groupId>antlr</groupId> | ||
<artifactId>antlr</artifactId> | ||
<version>2.7.7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
<version>1.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.13</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant</artifactId> | ||
<version>1.10.7</version> | ||
</dependency> | ||
|
||
<!-- Upper bounds in Embedder --> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-utils</artifactId> | ||
<version>3.3.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-container-default</artifactId> | ||
<version>2.0.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-classworlds</artifactId> | ||
<version>2.5.2</version> | ||
<version>2.6.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
<artifactId>maven-scm-manager-plexus</artifactId> | ||
<version>1.5</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-container-default</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.lib</groupId> | ||
<artifactId>lib-jenkins-maven-embedder</artifactId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh yes |
||
<version>3.12.1</version> | ||
</dependency> | ||
|
||
<!--TODO(oleg_nenashev): Remove all providers except Git? --> | ||
<!-- scm providers declaration --> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
|
@@ -165,12 +142,6 @@ | |
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-slf4j-logging</artifactId> | ||
<version>1.1</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-container-default</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
|
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
122 changes: 0 additions & 122 deletions
122
plugins-compat-tester/src/main/java/org/jenkins/tools/test/maven/InternalMavenRunner.java
This file was deleted.
Oops, something went wrong.
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use it since we do not longer bundle Maven libs.
http://olamy.blogspot.com/2010/09/use-maven-3-apis-in-hudson-plugin.html from @olamy