-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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-41631, JENKINS-40088, JENKINS-43715, JENKINS-40979] - Update Stapler and Enforce upper bound deps #2956
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ THE SOFTWARE. | |
|
||
<properties> | ||
<staplerFork>true</staplerFork> | ||
<stapler.version>1.250</stapler.version> | ||
<stapler.version>1.252</stapler.version> | ||
<spring.version>2.5.6.SEC03</spring.version> | ||
<groovy.version>2.4.11</groovy.version> | ||
<!-- TODO: Actually many issues are being filtered by src/findbugs/findbugs-excludes.xml --> | ||
|
@@ -95,6 +95,12 @@ THE SOFTWARE. | |
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<exclusions> | ||
<exclusion> <!-- TODO it seems to want Guava 16; apparently it manages to run against 11 --> | ||
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. What could possibly go wrong? :( 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. Well, we are already doing it—this just makes it apparent. |
||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> <!-- for compatibility only; all new code should use JNR --> | ||
|
@@ -602,6 +608,12 @@ THE SOFTWARE. | |
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<exclusions> | ||
<exclusion> <!-- pick up from Stapler --> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</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. Maybe it's safer to just define the newest version in this POM instead of adding exclusions 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. Maybe. Not used at runtime anyway, so probably does not matter. |
||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,7 @@ THE SOFTWARE. | |
<patch.tracker.serverId>jenkins-jira</patch.tracker.serverId> | ||
|
||
<guavaVersion>11.0.1</guavaVersion> | ||
<slf4jVersion>1.7.7</slf4jVersion> <!-- < 1.6.x version didn't specify the license (MIT) --> | ||
<slf4jVersion>1.7.25</slf4jVersion> | ||
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. 👍 been hit by this recently and this improvement shows it's worth it to avoid JENKINS-41631 being too much of a nightmare when it starts reaching plugins (I think now it's still so recent that only very few ever tried, or reverted it seeing that new error). 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. Yes the intent here (together with the 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. FYI @jtnord |
||
<maven-plugin.version>2.14</maven-plugin.version> | ||
<matrix-project.version>1.4.1</matrix-project.version> | ||
<sorcerer.version>0.11</sorcerer.version> | ||
|
@@ -207,7 +207,7 @@ THE SOFTWARE. | |
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
<version>1.1.3</version> | ||
<version>1.2</version> | ||
<scope>provided</scope><!-- by jcl-over-slf4j --> | ||
</dependency> | ||
<dependency> | ||
|
@@ -558,6 +558,11 @@ THE SOFTWARE. | |
</dependency> | ||
</dependencies> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<version>3.0.0-M1</version> <!-- TODO 3.0.0 when released --> | ||
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. |
||
</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> | ||
|
@@ -690,6 +695,7 @@ THE SOFTWARE. | |
<enforceBytecodeVersion> | ||
<maxJdkVersion>1.${java.level}</maxJdkVersion> | ||
</enforceBytecodeVersion> | ||
<requireUpperBoundDeps/> | ||
</rules> | ||
</configuration> | ||
</execution> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ THE SOFTWARE. | |
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>jenkins-test-harness</artifactId> | ||
<version>2.20</version> | ||
<version>2.23</version> | ||
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. Unrelated to this change, I'd guess 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. It is, to catch jenkinsci/jenkins-test-harness#62 which indeed got released as 2.23. 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. Correct. 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. ack |
||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
|
@@ -85,6 +85,14 @@ THE SOFTWARE. | |
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
|
@@ -106,7 +114,7 @@ THE SOFTWARE. | |
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>1.2-beta-4</version> | ||
<version>1.6</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -119,6 +127,12 @@ THE SOFTWARE. | |
<groupId>org.jvnet.mock-javamail</groupId> | ||
<artifactId>mock-javamail</artifactId> | ||
<version>1.7</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>javax.mail</groupId> | ||
<artifactId>mail</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
|
@@ -128,7 +142,7 @@ THE SOFTWARE. | |
<dependency><!-- we exclude this transient dependency from htmlunit, which we actually need in the test --> | ||
<groupId>xalan</groupId> | ||
<artifactId>xalan</artifactId> | ||
<version>2.7.1</version> | ||
<version>2.7.2</version> | ||
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. So it's bundled into the core, right? Maybe requires a changelog entry as well 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. No, this is the test POM. |
||
<exclusions> | ||
<exclusion> | ||
<groupId>xml-apis</groupId> | ||
|
@@ -156,6 +170,16 @@ THE SOFTWARE. | |
<groupId>org.reflections</groupId> | ||
<artifactId>reflections</artifactId> | ||
<version>0.9.9</version> | ||
<exclusions> | ||
<exclusion> <!-- TODO requests 15; apparently works well enough with the 11 we bundle --> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</exclusion> | ||
<exclusion> <!-- pick up from Stapler --> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.geb</groupId> | ||
|
@@ -239,6 +263,23 @@ THE SOFTWARE. | |
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
<plugin> <!-- TODO pending JENKINS-45271 fix, would be best to finish moving MavenModuleSet-specific tests to maven-plugin and delete the test dep here --> | ||
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. Yeah, needs fix asap. OTOH, how many MavenPlugin-dependent tests do we have in the core? Maybe we should just move them elsewhere and remove the dependency. 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. There are a bunch. I do think it would be wise to move them to 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. Could you please create a follow-up ticket for it? 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. |
||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<configuration> | ||
<rules> | ||
<requireUpperBoundDeps> | ||
<excludes combine.children="append"> | ||
<exclude>org.apache.maven:maven-embedder</exclude> | ||
<exclude>org.codehaus.plexus:plexus-classworlds</exclude> | ||
<exclude>org.apache.maven:maven-core</exclude> | ||
<exclude>org.apache.maven:maven-aether-provider</exclude> | ||
<exclude>org.codehaus.plexus:plexus-utils</exclude> | ||
</excludes> | ||
</requireUpperBoundDeps> | ||
</rules> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
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.
Changelog
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.
Now I wonder why I didn't ask about this when reviewing: was this related to Enforcer Upper Bound Deps? Shouldn't it have been a dedicated PR?
Anyway, it revealed jenkinsci/stapler#128 for us, an internal plugin that does not compile anymore.