-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test with Java 21, dependencies clean-up and modernization. (#173)
* fix(maven): Dependency clean-up * fix(maven): Dependency clean-up * fix(jenkins): No more JDK11 * fix(jenkins): No more JDK11 * fix(maven): Dependency clean-up * fix(maven): Dependency clean-up * fix(maven): Dependency clean-up * fix(maven): Dependency clean-up * fix(maven): Dependency clean-up
- Loading branch information
Showing
2 changed files
with
11 additions
and
40 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,10 @@ | ||
#!/usr/bin/env groovy | ||
|
||
/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */ | ||
buildPlugin(useContainerAgent: true, configurations: [ | ||
[platform: 'linux', jdk: 21], // Linux first for coverage report on ci.jenkins.io | ||
[platform: 'linux', jdk: 17], | ||
[platform: 'windows', jdk: 11], | ||
]) | ||
/* | ||
See the documentation for more options: | ||
https://github.com/jenkins-infra/pipeline-library/ | ||
*/ | ||
buildPlugin( | ||
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests | ||
configurations: [ | ||
[platform: 'linux', jdk: 21], | ||
[platform: 'windows', jdk: 17], | ||
]) |
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