-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: test on java 17 * Fix javadoc issue
- Loading branch information
Showing
3 changed files
with
11 additions
and
8 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,9 +1,16 @@ | ||
def configurations = [ | ||
[ platform: "linux", jdk: "8", jenkins: null ], | ||
[ platform: "windows", jdk: "8", jenkins: null ], | ||
[ platform: "linux", jdk: "11", jenkins: null ], | ||
// Test the long-term support end of the compatibility spectrum (i.e., the minimum required | ||
// Jenkins version). | ||
[ platform: 'linux', jdk: '8', jenkins: null ], | ||
|
||
// Test the common case (i.e., a recent LTS release) on both Linux and Windows. | ||
[ platform: 'linux', jdk: '11', jenkins: '2.332.1' ], | ||
[ platform: 'windows', jdk: '11', jenkins: '2.332.1' ], | ||
|
||
// Test the bleeding edge of the compatibility spectrum (i.e., the latest supported Java runtime). | ||
[ platform: 'linux', jdk: '17', jenkins: '2.342' ], | ||
] | ||
|
||
buildPlugin( | ||
configurations: configurations | ||
) | ||
) |
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