Skip to content
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ THE SOFTWARE.

<properties>
<!-- Minimum Remoting version, which is tested for API compatibility, duplicated so that renovate only updates the latest remoting version property -->
<remoting.minimum.supported.version>3107.v665000b_51092</remoting.minimum.supported.version>
<remoting.minimum.supported.version>3176.v207ec082a_8c0</remoting.minimum.supported.version>
<!-- Filled in by jacoco-maven-plugin -->
<jacocoSurefireArgs />
</properties>
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/util/SetContextClassLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* unclear, {@link #SetContextClassLoader(ClassLoader)} can be used as a fallback with {@link
* PluginManager.UberClassLoader} as the argument, though this is not as safe since lookups could be
* ambiguous in case two unrelated plugins both bundle the same library. In functional tests, {@code
* RealJenkinsRule.Endpoint} can be used to reference a class loader that has access to the plugins
* RealJenkinsFixture.Endpoint} can be used to reference a class loader that has access to the plugins
* defined in the test scenario.
*
* <p>See <a
Expand Down
4 changes: 2 additions & 2 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ THE SOFTWARE.
<properties>
<mavenDebug>false</mavenDebug>
<!-- Minimum Remoting version, which is tested for API compatibility, duplicated so that renovate only updates the latest remoting version property -->
<remoting.minimum.supported.version>3107.v665000b_51092</remoting.minimum.supported.version>
<remoting.minimum.supported.version>3176.v207ec082a_8c0</remoting.minimum.supported.version>
<!-- Filled in by jacoco-maven-plugin -->
<jacocoSurefireArgs />
<!--
Expand Down Expand Up @@ -192,7 +192,7 @@ THE SOFTWARE.
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-test-harness</artifactId>
<version>2537.v48fd29a_7070d</version>
<version>2554.v7da_7c803d140</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.RealJenkinsRule;
import org.jvnet.hudson.test.fixtures.RealJenkinsFixture;
import org.jvnet.hudson.test.junit.jupiter.RealJenkinsExtension;

class SetContextClassLoaderTest {
Expand All @@ -20,7 +20,7 @@ void positive() throws Throwable {
}

private static void _positive(JenkinsRule r) throws ClassNotFoundException {
try (SetContextClassLoader sccl = new SetContextClassLoader(RealJenkinsRule.Endpoint.class)) {
try (SetContextClassLoader sccl = new SetContextClassLoader(RealJenkinsFixture.Endpoint.class)) {
assertEquals("hudson.tasks.Mailer$UserProperty", getUserPropertyClass().getName());
}
}
Expand Down
2 changes: 1 addition & 1 deletion war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ THE SOFTWARE.
<port>8080</port>
<mina-sshd-api.version>2.16.0-167.va_269f38cc024</mina-sshd-api.version>
<!-- Minimum Remoting version, which is tested for API compatibility, duplicated so that renovate only updates the latest remoting version property -->
<remoting.minimum.supported.version>3107.v665000b_51092</remoting.minimum.supported.version>
<remoting.minimum.supported.version>3176.v207ec082a_8c0</remoting.minimum.supported.version>

</properties>

Expand Down
Loading