Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ abstract class AssembleTargetPlatformTask extends DefaultTask {
'-roaming',
'-nosplash',
'-consoleLog',
'-vmargs', '-Declipse.p2.mirror=false')
// the release train metadata contains XML entities larger than the JAXP defaults
// allow, and the SDK that runs the director does not raise the limits itself
'-vmargs', '-Declipse.p2.mirror=false',
'-Djdk.xml.maxGeneralEntitySizeLimit=0',
'-Djdk.xml.totalEntitySizeLimit=0')

it.ignoreExitValue = true
}
Expand All @@ -133,7 +137,11 @@ abstract class AssembleTargetPlatformTask extends DefaultTask {
'-roaming',
'-nosplash',
'-consoleLog',
'-vmargs', '-Declipse.p2.mirror=false')
// the release train metadata contains XML entities larger than the JAXP defaults
// allow, and the SDK that runs the director does not raise the limits itself
'-vmargs', '-Declipse.p2.mirror=false',
'-Djdk.xml.maxGeneralEntitySizeLimit=0',
'-Djdk.xml.totalEntitySizeLimit=0')
}
}
}
14 changes: 12 additions & 2 deletions buildSrc/src/main/groovy/eclipsebuild/BuildDefinitionPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,12 @@ class BuildDefinitionPlugin implements Plugin<Project> {
'-roaming',
'-nosplash',
'-consoleLog',
'-vmargs', '-Declipse.p2.mirror=false')
// the release train metadata contains XML entities larger than the JAXP
// defaults allow, and the SDK that runs the director does not raise the
// limits itself
'-vmargs', '-Declipse.p2.mirror=false',
'-Djdk.xml.maxGeneralEntitySizeLimit=0',
'-Djdk.xml.totalEntitySizeLimit=0')

it.ignoreExitValue = true
}
Expand All @@ -417,7 +422,12 @@ class BuildDefinitionPlugin implements Plugin<Project> {
'-roaming',
'-nosplash',
'-consoleLog',
'-vmargs', '-Declipse.p2.mirror=false')
// the release train metadata contains XML entities larger than the JAXP
// defaults allow, and the SDK that runs the director does not raise the
// limits itself
'-vmargs', '-Declipse.p2.mirror=false',
'-Djdk.xml.maxGeneralEntitySizeLimit=0',
'-Djdk.xml.totalEntitySizeLimit=0')
}
}

Expand Down
29 changes: 20 additions & 9 deletions buildship.setup
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@
<requirement
name="org.eclipse.emf.ecoretools.design.feature.group"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/5.7.0/e4.35"/>
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.40"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/5.7.0/e4.34"/>
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.39"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/5.7.0/e4.33"/>
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.38"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/5.7.0/e4.32"/>
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.37"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/5.7.0/e4.31"/>
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.36"/>
<repository
url="https://groovy.jfrog.io/artifactory/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/6.2.0/e4.35"/>
</setupTask>
<setupTask
xsi:type="setup:CompoundTask"
Expand Down Expand Up @@ -85,6 +87,13 @@
xsi:type="jdt:JRETask"
version="JavaSE-11"
location="${jre.location-11}"/>
<setupTask
xsi:type="jdt:JRETask"
id="buildship.preferences.compiler.jre21"
version="JavaSE-21"
location="${jre.location-21}">
<description>The bundles that depend on the platform declare JavaSE-21, matching the newest supported Eclipse release. Register a strictly compatible JRE so their JRE containers resolve without a "no strictly compatible JRE" warning.</description>
</setupTask>
</setupTask>
</setupTask>
<setupTask
Expand All @@ -100,22 +109,24 @@
xsi:type="setup:PreferenceTask"
id="buildship.preferences.compiler.source"
key="instance/org.eclipse.jdt.core/org.eclipse.jdt.core.compiler.source"
value="1.8"/>
value="21"/>
<setupTask
xsi:type="setup:PreferenceTask"
id="buildship.preferences.compiler.compilance"
key="instance/org.eclipse.jdt.core/org.eclipse.jdt.core.compiler.compliance"
value="1.8"/>
value="21"/>
<setupTask
xsi:type="setup:PreferenceTask"
id="buildship.preferences.compiler.codegen"
key="instance/org.eclipse.jdt.core/org.eclipse.jdt.core.compiler.codegen.targetPlatform"
value="1.8"/>
value="21">
<description>Must match the execution environment the bundle manifests declare. PDE derives each project's compliance from its Bundle-RequiredExecutionEnvironment, and JDT compares that value against the class file version of the target platform bundles on the build path. A lower value makes JDT report "Incompatible .class files version in required binaries", which is a build path error and stops the project from compiling at all.</description>
</setupTask>
<setupTask
xsi:type="setup:PreferenceTask"
id="buildship.preferences.compiler.goovycompilerlevel"
key="instance/org.codehaus.groovy.eclipse.compilerResolver/groovy.compiler.level"
value="25">
value="30">
<description>Align workspace Groovy compiler level to referenced libs</description>
</setupTask>
<setupTask
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.branding/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21/"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="output" path="bin"/>
Expand Down
3 changes: 2 additions & 1 deletion org.eclipse.buildship.branding/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle
Bundle-SymbolicName: org.eclipse.buildship.branding;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.branding
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-ClassPath: .
1 change: 1 addition & 0 deletions org.eclipse.buildship.compat/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - Compatibility classes
Bundle-SymbolicName: org.eclipse.buildship.compat;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.compat
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.core.test/.classpath
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
4 changes: 2 additions & 2 deletions org.eclipse.buildship.core.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - Core Test
Bundle-SymbolicName: org.eclipse.buildship.core.test;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.core.test
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Fragment-Host: org.eclipse.buildship.core
Comment: junit has to be a required bundle, otherwise the tests won't launch for headless builds
Require-Bundle: junit-platform-engine
Expand Down Expand Up @@ -36,7 +37,6 @@ Bundle-ClassPath: .,
lib/groovy-test-junit5-3.0.19.jar,
lib/groovy-testng-3.0.19.jar,
lib/groovy-xml-3.0.19.jar,
lib/hamcrest-core-1.3.jar,
lib/javaparser-core-3.25.4.jar,
lib/jcommander-1.78.jar,
lib/jline-2.14.6.jar,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.core/.classpath
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="src" path="src/main/resources/"/>
Expand Down
3 changes: 2 additions & 1 deletion org.eclipse.buildship.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - Core
Bundle-SymbolicName: org.eclipse.buildship.core;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.core
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Activator: org.eclipse.buildship.core.internal.CorePlugin
Require-Bundle: org.eclipse.core.expressions,
org.eclipse.core.filesystem,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.dcl.provider/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.dcl.provider/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.lsp4e,
org.eclipse.jdt.launching,
org.eclipse.buildship.core
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-RequiredExecutionEnvironment: JavaSE-21
Automatic-Module-Name: org.eclipse.buildship.dcl.provider
5 changes: 4 additions & 1 deletion org.eclipse.buildship.dcl.provider/build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
bin.includes = META-INF/,\
source.. = src/main/java/
output.. = bin/
bin.includes = .,\
META-INF/,\
plugin.xml,\
grammar/,\
gradle-dcl.tmLanguage.json,\
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.gradleprop.provider/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Provider
Bundle-SymbolicName: org.eclipse.buildship.gradleprop.provider;singleton:=true
Bundle-Version: 3.1.12.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-RequiredExecutionEnvironment: JavaSE-21
Require-Bundle: org.eclipse.core.contenttype,
org.eclipse.ui,
org.eclipse.lsp4e,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.gradleprop.test/.classpath
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="output" path="bin"/>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.gradleprop.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - gradle.properties editor t
Bundle-SymbolicName: org.eclipse.buildship.gradleprop.test;singleton:=true
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Fragment-Host: org.eclipse.buildship.gradleprop.provider
Comment: junit has to be a required bundle, otherwise the tests won't launch for headless builds
Require-Bundle: org.eclipse.swtbot.eclipse.finder,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.oomph.edit/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java-generated"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
<accessrules>
<accessrule kind="accessible" pattern="org/eclipse/oomph/**"/>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.oomph.edit/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Bundle-ClassPath: .
Bundle-Activator: org.eclipse.buildship.oomph.provider.GradleImportEditPlugin$Implementation
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.ecore;bundle-version="[2.10.0,3.0.0)",
org.eclipse.emf.edit;bundle-version="[2.10.0,3.0.0)";visibility:=reexport,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.oomph.test/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<classpath>
<classpathentry kind="src" path="src/main/groovy"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="GROOVY_DSL_SUPPORT"/>
<classpathentry kind="output" path="bin"/>
Expand Down
3 changes: 1 addition & 2 deletions org.eclipse.buildship.oomph.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - Oomph Import Setup Task UI
Bundle-SymbolicName: org.eclipse.buildship.oomph.test;singleton:=true
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Fragment-Host: org.eclipse.buildship.oomph
Automatic-Module-Name: org.eclipse.buildship.oomph.test
Require-Bundle: org.eclipse.oomph.setup.core,
Expand Down Expand Up @@ -54,7 +54,6 @@ Bundle-ClassPath: .,
lib/groovy-test-junit5-3.0.19.jar,
lib/groovy-testng-3.0.19.jar,
lib/groovy-xml-3.0.19.jar,
lib/hamcrest-core-1.3.jar,
lib/javaparser-core-3.25.4.jar,
lib/jcommander-1.78.jar,
lib/jline-2.14.6.jar,
Expand Down
3 changes: 1 addition & 2 deletions org.eclipse.buildship.oomph.test/build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
source.. = src/main/groovy/,\
src/main/resources/
source.. = src/main/groovy/
output.. = bin/
bin.includes = .,\
lib/,\
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.oomph/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<classpathentry kind="src" path="src/main/java-generated"/>
<classpathentry kind="src" path="src/main/resources"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
<accessrules>
<accessrule kind="accessible" pattern="org/eclipse/oomph/**"/>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.oomph/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Bundle-Version: 3.1.12.qualifier
Bundle-ClassPath: .
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.ecore;bundle-version="[2.10.0,3.0.0)";visibility:=reexport,
org.eclipse.oomph.resources;bundle-version="[1.1.0,2.0.0)";visibility:=reexport,
Expand Down
1 change: 1 addition & 0 deletions org.eclipse.buildship.oomph/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ bin.includes = .,\
plugin.properties
jars.compile.order = .
source.. = src/main/java-generated/,\
src/main/java/,\
src/main/resources/
output.. = bin/
2 changes: 1 addition & 1 deletion org.eclipse.buildship.ui.test/.classpath
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/>
<classpathentry kind="src" path="src/main/groovy"/>
Expand Down
4 changes: 2 additions & 2 deletions org.eclipse.buildship.ui.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - UI Test
Bundle-SymbolicName: org.eclipse.buildship.ui.test;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.ui.test
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Fragment-Host: org.eclipse.buildship.ui
Comment: junit has to be a required bundle, otherwise the tests won't launch for headless builds
Require-Bundle: org.eclipse.swtbot.eclipse.finder,
Expand Down Expand Up @@ -53,7 +54,6 @@ Bundle-ClassPath: .,
lib/groovy-test-junit5-3.0.19.jar,
lib/groovy-testng-3.0.19.jar,
lib/groovy-xml-3.0.19.jar,
lib/hamcrest-core-1.3.jar,
lib/javaparser-core-3.25.4.jar,
lib/jcommander-1.78.jar,
lib/jline-2.14.6.jar,
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.buildship.ui/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="src" path="src/main/resources"/>
Expand Down
3 changes: 2 additions & 1 deletion org.eclipse.buildship.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Buildship, Eclipse Plug-ins for Gradle - UI
Bundle-SymbolicName: org.eclipse.buildship.ui;singleton:=true
Automatic-Module-Name: org.eclipse.buildship.ui
Bundle-Version: 3.1.12.qualifier
Bundle-Vendor: Eclipse Buildship
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Activator: org.eclipse.buildship.ui.internal.UiPlugin
Require-Bundle: org.eclipse.buildship.core,
org.eclipse.core.runtime,
Expand Down
2 changes: 1 addition & 1 deletion org.gradle.toolingapi/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="output" path="bin/default"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry sourcepath="org.gradle.toolingapi.source_8.9.0.jar" kind="lib" path="org.gradle.toolingapi_8.9.0.jar" exported="true"/>
</classpath>
3 changes: 2 additions & 1 deletion org.gradle.toolingapi/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Gradle Tooling API
Bundle-Vendor: Gradle Inc.
Bundle-SymbolicName: org.gradle.toolingapi
Automatic-Module-Name: org.gradle.toolingapi
Bundle-ClassPath: org.gradle.toolingapi_8.9.0.jar
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.slf4j;version="1.7.2"
Expand Down Expand Up @@ -31,4 +32,4 @@ Export-Package: org.gradle.api;version="8.9.0",
org.gradle.tooling.model.idea;version="8.9.0",
org.gradle.tooling.model.java;version="8.9.0",
org.gradle.tooling.model.kotlin.dsl;version="8.9.0"
Bundle-Version: 3.1.12.qualifier
Bundle-Version: 8.9.0.qualifier
Loading
Loading