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

Test JGit 7.0.0 with Jakarta EE 9 Jenkins core #1172

Draft
wants to merge 31 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c14430c
Test JGit 7.0.0-m2 pre-release with Java 17 build
MarkEWaite Aug 7, 2024
7f33b16
Test JGit 7.0.0 with Jakarta EE 9 Jenkins core
MarkEWaite Aug 7, 2024
d9ef6d2
Merge branch 'master' into test-jgit-7.0.0
Aug 23, 2024
de63f62
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Aug 23, 2024
42b7533
Use JGit 7.0.0.202408202050-m3 pre-release
MarkEWaite Aug 23, 2024
1272adc
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Aug 23, 2024
1527459
Merge branch 'master' into test-jgit-7.0.0
MarkEWaite Aug 27, 2024
890c0b8
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Aug 27, 2024
1fb75a3
Merge branch 'master' into test-jgit-7.0.0
MarkEWaite Sep 5, 2024
3398faa
Use JGit 7.0.0.202409031743-r
MarkEWaite Sep 5, 2024
8f47f3c
Adapt to removed API's in JGit 7.0.0
MarkEWaite Sep 5, 2024
0a30ea6
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 5, 2024
15c3bdc
Use test harness 2265.x
Sep 6, 2024
480ce4b
Next Jenkins baseline will be a .1
Sep 6, 2024
c8d24d2
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
Sep 6, 2024
e81905e
Merge branch 'test-jgit-7.0.0-with-jakarta-ee-9' of github.com:MarkEW…
MarkEWaite Sep 6, 2024
1189a30
Use JGit 7.0.0 with Java 17
MarkEWaite Aug 7, 2024
8cbab98
Merge branch 'master' into test-jgit-7.0.0
MarkEWaite Sep 12, 2024
ef1a30d
Merge branch 'test-jgit-7.0.0' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 12, 2024
dfd8fe7
Use 6.1.0 as version
MarkEWaite Sep 12, 2024
9ab0ff9
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 12, 2024
086160a
Use Java 17 features in source code
MarkEWaite Sep 13, 2024
c938624
Merge branch 'use-java-17-source-code' into test-jgit-7.0.0-with-jaka…
MarkEWaite Sep 13, 2024
2654136
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 13, 2024
79858bb
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 13, 2024
8705589
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 18, 2024
da6c15f
Require Jenkins 2.477
MarkEWaite Sep 18, 2024
62ddbe0
Use test harness that drops EE 8
MarkEWaite Sep 18, 2024
c9596fd
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
MarkEWaite Sep 20, 2024
6da4ecd
Use Jenkins test harness 2289.x
MarkEWaite Sep 20, 2024
51b1c07
Merge branch 'master' into test-jgit-7.0.0-with-jakarta-ee-9
Sep 23, 2024
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
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</scm>

<properties>
<revision>6.0.1</revision>
<revision>6.1.0</revision>
<changelist>-SNAPSHOT</changelist>
<!-- Character set tests fail unless file.encoding is set -->
<argLine>-Dfile.encoding=${project.build.sourceEncoding}</argLine>
Expand All @@ -62,9 +62,10 @@
<jenkins.baseline>2.462</jenkins.baseline>
<!-- TODO Replace with the standard jenkins.baseline references after LTS requires Java 17 -->
<!-- <jenkins.version>${jenkins.baseline}.1</jenkins.version> -->
<jenkins.version>2.463</jenkins.version>
<jenkins.version>2.477</jenkins.version>
<jgit.version>7.0.0.202409031743-r</jgit.version>
<!-- TODO JENKINS-73339 until in parent POM -->
<jenkins-test-harness.version>2289.vfd344a_6d1660</jenkins-test-harness.version>
<maven.compiler.release>17</maven.compiler.release>
<spotbugs.effort>Max</spotbugs.effort>
<spotbugs.threshold>Low</spotbugs.threshold>
Expand All @@ -80,6 +81,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- TODO JENKINS-73339 until in parent POM, work around https://github.com/jenkinsci/plugin-pom/issues/936 -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down