Skip to content
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

Update dependency org.jenkins-ci.main:jenkins-war to v2.475 #828

Merged
merged 2 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all 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 Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: 17],
[platform: 'windows', jdk: 17],
[platform: 'linux', jdk: 21, jenkins: '2.474']
[platform: 'linux', jdk: 21, jenkins: '2.475']
])
2 changes: 1 addition & 1 deletion src/main/java/org/jvnet/hudson/test/JenkinsRecipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ abstract class Runner<T extends Annotation> {
public void setup(JenkinsRule jenkinsRule, T recipe) throws Exception {}

/**
* Called right before {@link jenkins.model.Jenkins#Jenkins(java.io.File, javax.servlet.ServletContext)} is invoked
* Called right before {@code jenkins.model.Jenkins#Jenkins(java.io.File, javax.servlet.ServletContext)} is invoked
* to decorate the hudson home directory.
*/
public void decorateHome(JenkinsRule jenkinsRule, File home) throws Exception {}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jvnet/hudson/test/recipes/Recipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class Runner<T extends Annotation> {
public void setup(HudsonTestCase testCase, T recipe) throws Exception {}

/**
* Called right before {@link jenkins.model.Jenkins#Jenkins(File, javax.servlet.ServletContext)} is invoked
* Called right before {@code jenkins.model.Jenkins#Jenkins(File, javax.servlet.ServletContext)} is invoked
* to decorate the hudson home directory.
*/
public void decorateHome(HudsonTestCase testCase, File home) throws Exception {}
Expand Down
Loading