-
-
Notifications
You must be signed in to change notification settings - Fork 22
feat: upgrade to Jenkins LTS Core 2.462.3 for Java 11 support #26
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
Open
gounthar
wants to merge
7
commits into
jenkinsci:master
Choose a base branch
from
gounthar:plugin-modernizer/upgradetolatestjava11coreversion
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
558356f
feat: upgrade to Jenkins LTS Core 2.462.3 for Java 11 support
gounthar 82d7f64
refactor: format pom.xml for improved readability and structure, and …
gounthar e74b9bf
refactor: improve code consistency by changing static variable declar…
gounthar 2670791
refactor: standardize static variable declaration and improve method …
gounthar 8070bc8
refactor: standardize static variable declaration and improve import …
gounthar fa7b3cb
refactor: improve import formatting and standardize string pattern de…
gounthar b055eb6
feat: add spotbugs exclusion configuration for public primitive attri…
gounthar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,79 +1,91 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <parent> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>plugin</artifactId> | ||
| <version>4.52</version> | ||
| <relativePath /> | ||
| </parent> | ||
| <parent> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>plugin</artifactId> | ||
| <version>4.88</version> | ||
| <relativePath /> | ||
| </parent> | ||
|
|
||
| <properties> | ||
| <changelist>999999-SNAPSHOT</changelist> | ||
| <gitHubRepo>jenkinsci/date-parameter-plugin</gitHubRepo> | ||
| <!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. --> | ||
| <jenkins.version>2.361.4</jenkins.version> | ||
| <!-- Other properties you may want to use: | ||
| ~ java.level: set to 6 if your jenkins.version <= 1.611 ~ jenkins-test-harness.version: Jenkins Test Harness version you use to test the plugin. For Jenkins version >= 1.580.1 use JTH 2.0 or higher. | ||
| ~ hpi-plugin.version: The HPI Maven Plugin version used by the plugin.. | ||
| ~ stapler-plugin.version: The Stapler Maven plugin version required by the plugin. | ||
| --> | ||
| </properties> | ||
| <groupId>me.leejay.jenkins</groupId> | ||
| <artifactId>date-parameter</artifactId> | ||
| <version>${changelist}</version> | ||
| <packaging>hpi</packaging> | ||
| <name>Date Parameter Plugin</name> | ||
| <description>Java style LocalDate code as parameter in Parametrized builds</description> | ||
| <url>https://wiki.jenkins-ci.org/display/JENKINS/Date+Parameter+Plugin</url> | ||
| <!-- The default licence for Jenkins OSS Plugins is MIT. Substitute for the applicable one if needed. --> | ||
|
|
||
| <groupId>me.leejay.jenkins</groupId> | ||
| <artifactId>date-parameter</artifactId> | ||
| <version>${changelist}</version> | ||
| <packaging>hpi</packaging> | ||
| <name>Date Parameter Plugin</name> | ||
| <url>https://wiki.jenkins-ci.org/display/JENKINS/Date+Parameter+Plugin</url> | ||
| <description>Java style LocalDate code as parameter in Parametrized builds</description> | ||
| <!-- The default licence for Jenkins OSS Plugins is MIT. Substitute for the applicable one if needed. --> | ||
| <licenses> | ||
| <license> | ||
| <name>MIT License</name> | ||
| <url>http://opensource.org/licenses/MIT</url> | ||
| </license> | ||
| </licenses> | ||
|
|
||
| <licenses> | ||
| <license> | ||
| <name>MIT License</name> | ||
| <url>http://opensource.org/licenses/MIT</url> | ||
| </license> | ||
| </licenses> | ||
| <developers> | ||
| <developer> | ||
| <id>leejaycoke</id> | ||
| <name>JuHyun Lee</name> | ||
| <email>leejaycoke@gmail.com</email> | ||
| <timezone>+9</timezone> | ||
| </developer> | ||
| </developers> | ||
|
|
||
| <scm> | ||
| <connection>scm:git:git://github.com/${gitHubRepo}.git</connection> | ||
| <developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection> | ||
| <url>https://github.com/${gitHubRepo}</url> | ||
| <tag>${scmTag}</tag> | ||
| <scm> | ||
| <connection>scm:git:https://github.com/${gitHubRepo}.git</connection> | ||
| <developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection> | ||
| <tag>${scmTag}</tag> | ||
| <url>https://github.com/${gitHubRepo}</url> | ||
| </scm> | ||
|
|
||
| <developers> | ||
| <developer> | ||
| <id>leejaycoke</id> | ||
| <name>JuHyun Lee</name> | ||
| <email>leejaycoke@gmail.com</email> | ||
| <timezone>+9</timezone> | ||
| </developer> | ||
| </developers> | ||
|
|
||
| <repositories> | ||
| <repository> | ||
| <id>repo.jenkins-ci.org</id> | ||
| <url>https://repo.jenkins-ci.org/public/</url> | ||
| </repository> | ||
| </repositories> | ||
| <pluginRepositories> | ||
| <pluginRepository> | ||
| <id>repo.jenkins-ci.org</id> | ||
| <url>https://repo.jenkins-ci.org/public/</url> | ||
| </pluginRepository> | ||
| </pluginRepositories> | ||
| <properties> | ||
| <changelist>999999-SNAPSHOT</changelist> | ||
| <gitHubRepo>jenkinsci/date-parameter-plugin</gitHubRepo> | ||
| <!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. --> | ||
| <jenkins.version>2.462.3</jenkins.version> | ||
| <!-- Other properties you may want to use: | ||
| ~ java.level: set to 6 if your jenkins.version <= 1.611 ~ jenkins-test-harness.version: Jenkins Test Harness version you use to test the plugin. For Jenkins version >= 1.580.1 use JTH 2.0 or higher. | ||
| ~ hpi-plugin.version: The HPI Maven Plugin version used by the plugin.. | ||
| ~ stapler-plugin.version: The Stapler Maven plugin version required by the plugin. | ||
| --> | ||
| </properties> | ||
| <!-- https://mvnrepository.com/artifact/joda-time/joda-time --> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>joda-time</groupId> | ||
| <artifactId>joda-time</artifactId> | ||
| <version>2.9.9</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <!-- https://mvnrepository.com/artifact/joda-time/joda-time --> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>joda-time</groupId> | ||
| <artifactId>joda-time</artifactId> | ||
| <version>2.9.9</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| <repositories> | ||
| <repository> | ||
| <id>repo.jenkins-ci.org</id> | ||
| <url>https://repo.jenkins-ci.org/public/</url> | ||
| </repository> | ||
| </repositories> | ||
| <pluginRepositories> | ||
| <pluginRepository> | ||
| <id>repo.jenkins-ci.org</id> | ||
| <url>https://repo.jenkins-ci.org/public/</url> | ||
| </pluginRepository> | ||
| </pluginRepositories> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>com.github.spotbugs</groupId> | ||
| <artifactId>spotbugs-maven-plugin</artifactId> | ||
| <configuration> | ||
| <excludeFilterFile>src/main/resources/spotbugs-exclude.xml</excludeFilterFile> | ||
| <xmlOutput>true</xmlOutput> | ||
| <outputDirectory>target</outputDirectory> | ||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
| </project> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <FindBugsFilter> | ||
| <Match> | ||
| <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE"/> | ||
| </Match> | ||
| <Match> | ||
| <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE"/> | ||
| </Match> | ||
| </FindBugsFilter> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing permission check Warning