Skip to content

Commit 8dc545c

Browse files
committed
- Switched version to 1.0.1
- Removed OSGI Equinox Factory as well as some other OSGI related classes and files from final JAR as it caused issues within NetBeans runtime
1 parent e5c8231 commit 8dc545c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
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.0
6+
Bundle-Version: 1.0.1
77
Require-Bundle: org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,10.0.0)"
88
Bundle-RequiredExecutionEnvironment: JavaSE-11

pom.xml

Lines changed: 11 additions & 11 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.0</version>
21+
<version>1.0.1</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/2022-06</eclipse-repo.url>
75+
<eclipse-repo.url>http://download.eclipse.org/releases/2022-09</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>2.7.2</tychoVersion>
87+
<tychoVersion>2.7.3</tychoVersion>
8888
</properties>
8989

9090
<dependencyManagement>
@@ -102,7 +102,7 @@
102102
<dependency>
103103
<groupId>com.google.errorprone</groupId>
104104
<artifactId>error_prone_annotations</artifactId>
105-
<version>2.13.1</version>
105+
<version>2.14.0</version>
106106
</dependency>
107107
<dependency>
108108
<groupId>com.google.guava</groupId>
@@ -122,17 +122,17 @@
122122
<dependency>
123123
<groupId>com.google.javascript</groupId>
124124
<artifactId>closure-compiler-unshaded</artifactId>
125-
<version>v20220502</version>
125+
<version>v20220601</version>
126126
</dependency>
127127
<dependency>
128128
<groupId>com.google.protobuf</groupId>
129129
<artifactId>protobuf-java</artifactId>
130-
<version>3.20.1</version>
130+
<version>3.21.2</version>
131131
</dependency>
132132
<dependency>
133133
<groupId>org.checkerframework</groupId>
134134
<artifactId>checker-qual</artifactId>
135-
<version>3.22.0</version>
135+
<version>3.22.2</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.ibm.icu</groupId>
@@ -211,7 +211,7 @@
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-enforcer-plugin</artifactId>
214-
<version>3.0.0</version>
214+
<version>3.1.0</version>
215215
</plugin>
216216
<plugin>
217217
<groupId>org.apache.maven.plugins</groupId>
@@ -260,7 +260,7 @@
260260
<plugin>
261261
<groupId>org.codehaus.mojo</groupId>
262262
<artifactId>versions-maven-plugin</artifactId>
263-
<version>2.10.0</version>
263+
<version>2.11.0</version>
264264
</plugin>
265265
<plugin>
266266
<groupId>org.sonatype.plugins</groupId>
@@ -346,9 +346,9 @@
346346
<phase>prepare-package</phase>
347347
<configuration>
348348
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
349-
<excludeGroupIds>com.google.code.gson,com.google.guava,com.google.javascript,com.google.errorprone,com.google.code.findbugs,com.google.j2objc,com.google.protobuf,com.ibm.icu,org.checkerframework</excludeGroupIds>
349+
<excludeGroupIds>com.google.code.gson,com.google.guava,com.google.javascript,com.google.errorprone,com.google.code.findbugs,com.google.j2objc,com.google.protobuf,com.ibm.icu,org.checkerframework,org.osgi,org.osgi.service</excludeGroupIds>
350350
<excludeArtifactIds>com.google.gson,com.google.guava,com.google.javascript,com.google.protobuf,protobuf-java,com.ibm.icu</excludeArtifactIds>
351-
<excludes>META-INF/*</excludes>
351+
<excludes>META-INF/*,OSGI-INF/*,org/eclipse/osgi/launch/*</excludes>
352352
</configuration>
353353
</execution>
354354
</executions>

0 commit comments

Comments
 (0)