Skip to content

Commit 064993a

Browse files
authored
Merge pull request #21 from funfried/release/1.x
Updated all dependencies and increased version number
2 parents 0c29640 + 2c2d01d commit 064993a

File tree

5 files changed

+47
-47
lines changed

5 files changed

+47
-47
lines changed

.github/workflows/maven.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ jobs:
3131
fail-fast: false
3232
runs-on: ${{ matrix.os }}
3333
steps:
34-
- uses: actions/checkout@v3
35-
- name: Set up JDK 17
36-
uses: actions/setup-java@v3
34+
- uses: actions/checkout@v5
35+
- name: Set up JDK 21
36+
uses: actions/setup-java@v5
3737
with:
38-
java-version: 17
38+
java-version: 21
3939
distribution: zulu
40-
- name: Set up Maven 3.9.4
41-
uses: stCarolas/setup-maven@v4.5
40+
- name: Set up Maven 3.9.11
41+
uses: stCarolas/setup-maven@v5
4242
with:
43-
maven-version: 3.9.4
43+
maven-version: 3.9.11
4444
- name: Cache local maven repository
45-
uses: actions/cache@v2
45+
uses: actions/cache@v4
4646
with:
4747
path: ~/.m2
4848
key: ${{ matrix.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release_maven.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- name: Set up JDK 17
17-
uses: actions/setup-java@v3
15+
- uses: actions/checkout@v5
16+
- name: Set up JDK 21
17+
uses: actions/setup-java@v5
1818
with:
19-
java-version: '17'
19+
java-version: '21'
2020
distribution: 'adopt'
2121
cache: maven
22-
- name: Set up Maven 3.9.4
23-
uses: stCarolas/setup-maven@v4.5
22+
- name: Set up Maven 3.9.11
23+
uses: stCarolas/setup-maven@v5
2424
with:
25-
maven-version: 3.9.4
25+
maven-version: 3.9.11
2626
- name: Build and Deploy with Maven
2727
run: |
2828
git config --global user.email "info@funfried.de"

META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Eclipse JSDT core
44
Bundle-SymbolicName: jsdt-core
55
Bundle-Vendor: funfried
6-
Bundle-Version: 1.0.11
6+
Bundle-Version: 1.0.12
77
Require-Bundle: org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,10.0.0)"
8-
Bundle-RequiredExecutionEnvironment: JavaSE-17
8+
Bundle-RequiredExecutionEnvironment: JavaSE-21

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ source.. = src/
22
output.. = target/classes
33
bin.includes = META-INF/,\
44
.
5-
jre.compilation.profile = JavaSE-17
5+
jre.compilation.profile = JavaSE-21

pom.xml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<groupId>de.funfried.libraries</groupId>
2020
<artifactId>jsdt-core</artifactId>
21-
<version>1.0.11</version>
21+
<version>1.0.12</version>
2222
<packaging>eclipse-plugin</packaging>
2323

2424
<developers>
@@ -72,19 +72,19 @@
7272

7373
<properties>
7474
<autoVersionSubmodules>true</autoVersionSubmodules>
75-
<eclipse-repo.url>http://download.eclipse.org/releases/2025-03</eclipse-repo.url>
75+
<eclipse-repo.url>http://download.eclipse.org/releases/2025-12</eclipse-repo.url>
7676
<!-- because of https://issues.apache.org/jira/browse/MCOMPILER-485 -->
7777
<maven.compiler.createMissingPackageInfoClass>false</maven.compiler.createMissingPackageInfoClass>
7878
<!-- all 3 are needed, because some plugins might use the source/target variables -->
79-
<maven.compiler.release>17</maven.compiler.release>
80-
<maven.compiler.source>17</maven.compiler.source>
81-
<maven.compiler.target>17</maven.compiler.target>
79+
<maven.compiler.release>21</maven.compiler.release>
80+
<maven.compiler.source>21</maven.compiler.source>
81+
<maven.compiler.target>21</maven.compiler.target>
8282
<!-- no useful site docs to deploy at this time -->
8383
<maven.site.deploy.skip>true</maven.site.deploy.skip>
8484
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
8585
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8686
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
87-
<tychoVersion>4.0.10</tychoVersion>
87+
<tychoVersion>5.0.0</tychoVersion>
8888
</properties>
8989

9090
<dependencyManagement>
@@ -97,47 +97,47 @@
9797
<dependency>
9898
<groupId>com.google.code.gson</groupId>
9999
<artifactId>gson</artifactId>
100-
<version>2.11.0</version>
100+
<version>2.13.2</version>
101101
</dependency>
102102
<dependency>
103103
<groupId>com.google.errorprone</groupId>
104104
<artifactId>error_prone_annotations</artifactId>
105-
<version>2.36.0</version>
105+
<version>2.43.0</version>
106106
</dependency>
107107
<dependency>
108108
<groupId>com.google.guava</groupId>
109109
<artifactId>failureaccess</artifactId>
110-
<version>1.0.2</version>
110+
<version>1.0.3</version>
111111
</dependency>
112112
<dependency>
113113
<groupId>com.google.guava</groupId>
114114
<artifactId>guava</artifactId>
115-
<version>33.4.0-jre</version>
115+
<version>33.5.0-jre</version>
116116
</dependency>
117117
<dependency>
118118
<groupId>com.google.j2objc</groupId>
119119
<artifactId>j2objc-annotations</artifactId>
120-
<version>3.0.0</version>
120+
<version>3.1</version>
121121
</dependency>
122122
<dependency>
123123
<groupId>com.google.javascript</groupId>
124124
<artifactId>closure-compiler-unshaded</artifactId>
125-
<version>v20240317</version>
125+
<version>v20250820</version>
126126
</dependency>
127127
<dependency>
128128
<groupId>com.google.protobuf</groupId>
129129
<artifactId>protobuf-java</artifactId>
130-
<version>4.29.3</version>
130+
<version>4.32.1</version>
131131
</dependency>
132132
<dependency>
133133
<groupId>org.checkerframework</groupId>
134134
<artifactId>checker-qual</artifactId>
135-
<version>3.48.4</version>
135+
<version>3.51.1</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.ibm.icu</groupId>
139139
<artifactId>icu4j</artifactId>
140-
<version>76.1</version>
140+
<version>77.1</version>
141141
</dependency>
142142
<dependency>
143143
<groupId>org.osgi</groupId>
@@ -196,37 +196,37 @@
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-clean-plugin</artifactId>
199-
<version>3.4.0</version>
199+
<version>3.5.0</version>
200200
</plugin>
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>3.13.0</version>
204+
<version>3.14.1</version>
205205
</plugin>
206206
<plugin>
207207
<groupId>org.apache.maven.plugins</groupId>
208208
<artifactId>maven-dependency-plugin</artifactId>
209-
<version>3.8.1</version>
209+
<version>3.9.0</version>
210210
</plugin>
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-deploy-plugin</artifactId>
214-
<version>3.1.3</version>
214+
<version>3.1.4</version>
215215
</plugin>
216216
<plugin>
217217
<groupId>org.apache.maven.plugins</groupId>
218218
<artifactId>maven-enforcer-plugin</artifactId>
219-
<version>3.5.0</version>
219+
<version>3.6.2</version>
220220
</plugin>
221221
<plugin>
222222
<groupId>org.apache.maven.plugins</groupId>
223223
<artifactId>maven-gpg-plugin</artifactId>
224-
<version>3.2.7</version>
224+
<version>3.2.8</version>
225225
</plugin>
226226
<plugin>
227227
<groupId>org.apache.maven.plugins</groupId>
228228
<artifactId>maven-install-plugin</artifactId>
229-
<version>3.1.3</version>
229+
<version>3.1.4</version>
230230
</plugin>
231231
<plugin>
232232
<groupId>org.apache.maven.plugins</groupId>
@@ -236,7 +236,7 @@
236236
<plugin>
237237
<groupId>org.apache.maven.plugins</groupId>
238238
<artifactId>maven-javadoc-plugin</artifactId>
239-
<version>3.11.2</version>
239+
<version>3.12.0</version>
240240
<configuration>
241241
<quiet>true</quiet>
242242
<doclint>all,-missing</doclint>
@@ -250,12 +250,12 @@
250250
<plugin>
251251
<groupId>org.apache.maven.plugins</groupId>
252252
<artifactId>maven-scm-plugin</artifactId>
253-
<version>2.1.0</version>
253+
<version>2.2.1</version>
254254
</plugin>
255255
<plugin>
256256
<groupId>org.apache.maven.plugins</groupId>
257257
<artifactId>maven-surefire-plugin</artifactId>
258-
<version>3.5.2</version>
258+
<version>3.5.4</version>
259259
</plugin>
260260
<plugin>
261261
<groupId>com.google.code.maven-replacer-plugin</groupId>
@@ -265,7 +265,7 @@
265265
<plugin>
266266
<groupId>org.codehaus.mojo</groupId>
267267
<artifactId>versions-maven-plugin</artifactId>
268-
<version>2.18.0</version>
268+
<version>2.19.1</version>
269269
</plugin>
270270
<plugin>
271271
<groupId>org.sonatype.plugins</groupId>
@@ -369,11 +369,11 @@
369369
<configuration>
370370
<rules>
371371
<requireMavenVersion>
372-
<!-- require min 3.9.0+ for Eclipse Tycho -->
373-
<version>[3.9.0,)</version>
372+
<!-- require min 3.9.11+ for Eclipse Tycho -->
373+
<version>[3.9.11,)</version>
374374
</requireMavenVersion>
375375
<requireJavaVersion>
376-
<version>[17,)</version>
376+
<version>[21,)</version>
377377
</requireJavaVersion>
378378
</rules>
379379
</configuration>

0 commit comments

Comments
 (0)