Skip to content

Commit 330396f

Browse files
authored
Merge pull request #15 from funfried/release/1.x
Prepared next release (1.0.6)
2 parents 4e79daa + 93efd1e commit 330396f

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
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.5
6+
Bundle-Version: 1.0.6
77
Require-Bundle: org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,10.0.0)"
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

pom.xml

Lines changed: 16 additions & 16 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.5</version>
21+
<version>1.0.6</version>
2222
<packaging>eclipse-plugin</packaging>
2323

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

7373
<properties>
7474
<autoVersionSubmodules>true</autoVersionSubmodules>
75-
<eclipse-repo.url>http://download.eclipse.org/releases/2023-09</eclipse-repo.url>
75+
<eclipse-repo.url>http://download.eclipse.org/releases/2024-03</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 -->
@@ -84,7 +84,7 @@
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.0</tychoVersion>
87+
<tychoVersion>4.0.4</tychoVersion>
8888
</properties>
8989

9090
<dependencyManagement>
@@ -102,17 +102,17 @@
102102
<dependency>
103103
<groupId>com.google.errorprone</groupId>
104104
<artifactId>error_prone_annotations</artifactId>
105-
<version>2.20.0</version>
105+
<version>2.23.0</version>
106106
</dependency>
107107
<dependency>
108108
<groupId>com.google.guava</groupId>
109109
<artifactId>failureaccess</artifactId>
110-
<version>1.0.1</version>
110+
<version>1.0.2</version>
111111
</dependency>
112112
<dependency>
113113
<groupId>com.google.guava</groupId>
114114
<artifactId>guava</artifactId>
115-
<version>32.1.2-jre</version>
115+
<version>32.1.3-jre</version>
116116
</dependency>
117117
<dependency>
118118
<groupId>com.google.j2objc</groupId>
@@ -122,22 +122,22 @@
122122
<dependency>
123123
<groupId>com.google.javascript</groupId>
124124
<artifactId>closure-compiler-unshaded</artifactId>
125-
<version>v20230502</version>
125+
<version>v20231112</version>
126126
</dependency>
127127
<dependency>
128128
<groupId>com.google.protobuf</groupId>
129129
<artifactId>protobuf-java</artifactId>
130-
<version>3.24.0</version>
130+
<version>3.25.1</version>
131131
</dependency>
132132
<dependency>
133133
<groupId>org.checkerframework</groupId>
134134
<artifactId>checker-qual</artifactId>
135-
<version>3.36.0</version>
135+
<version>3.40.0</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.ibm.icu</groupId>
139139
<artifactId>icu4j</artifactId>
140-
<version>73.2</version>
140+
<version>74.1</version>
141141
</dependency>
142142
<dependency>
143143
<groupId>org.osgi</groupId>
@@ -196,7 +196,7 @@
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-clean-plugin</artifactId>
199-
<version>3.3.1</version>
199+
<version>3.3.2</version>
200200
</plugin>
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
@@ -206,7 +206,7 @@
206206
<plugin>
207207
<groupId>org.apache.maven.plugins</groupId>
208208
<artifactId>maven-dependency-plugin</artifactId>
209-
<version>3.6.0</version>
209+
<version>3.6.1</version>
210210
</plugin>
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
@@ -216,7 +216,7 @@
216216
<plugin>
217217
<groupId>org.apache.maven.plugins</groupId>
218218
<artifactId>maven-enforcer-plugin</artifactId>
219-
<version>3.3.0</version>
219+
<version>3.4.1</version>
220220
</plugin>
221221
<plugin>
222222
<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.5.0</version>
239+
<version>3.6.2</version>
240240
<configuration>
241241
<quiet>true</quiet>
242242
<doclint>all,-missing</doclint>
@@ -255,7 +255,7 @@
255255
<plugin>
256256
<groupId>org.apache.maven.plugins</groupId>
257257
<artifactId>maven-surefire-plugin</artifactId>
258-
<version>3.1.2</version>
258+
<version>3.2.2</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.16.0</version>
268+
<version>2.16.2</version>
269269
</plugin>
270270
<plugin>
271271
<groupId>org.sonatype.plugins</groupId>

0 commit comments

Comments
 (0)