-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from jenkinsci/java-11
Require Java 11 & Jenkins 2.361 LTS baseline
- Loading branch information
Showing
5 changed files
with
31 additions
and
25 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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
#!groovy | ||
def recentLTS = '2.361.2' | ||
buildPlugin(configurations: [ | ||
[ platform: 'linux', jdk: '8', jenkins: null ], | ||
[ platform: 'windows', jdk: '11', jenkins: recentLTS ], | ||
[ platform: 'linux', jdk: '11', jenkins: recentLTS ], | ||
[ platform: 'linux', jdk: '17', jenkins: recentLTS ], | ||
]) | ||
def recentLTS = '2.375.2' | ||
buildPlugin( | ||
// Container agents start faster and are easier to administer | ||
useContainerAgent: true, | ||
configurations: [ | ||
[platform: 'linux', jdk: '11'], | ||
[platform: 'linux', jdk: '17', jenkins: recentLTS], | ||
[platform: 'windows', jdk: '17', jenkins: recentLTS], | ||
] | ||
) |
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 |
---|---|---|
|
@@ -34,7 +34,6 @@ | |
import jenkins.authentication.tokens.api.AuthenticationTokenSource; | ||
import org.jenkinsci.plugins.docker.commons.credentials.DockerRegistryToken; | ||
|
||
/** @author <a href="mailto:[email protected]">Nicolas De Loof</a> */ | ||
@Extension | ||
public class AmazonECSRegistryTokenSource | ||
extends AuthenticationTokenSource<DockerRegistryToken, AmazonECSRegistryCredential> { | ||
|