Skip to content

Commit

Permalink
JBIDE-29058: fix build after TP update
Browse files Browse the repository at this point in the history
Signed-off-by: Stephane Bouchet <[email protected]>
  • Loading branch information
sbouchet committed Sep 8, 2023
1 parent efb5202 commit efc35f0
Show file tree
Hide file tree
Showing 33 changed files with 55 additions and 49 deletions.
2 changes: 1 addition & 1 deletion features/org.jboss.tools.jst.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jst.feature"
label="%featureName"
version="3.10.400.qualifier"
version="3.10.500.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.jst.web.ui"
license-feature="org.jboss.tools.foundation.license.feature"
Expand Down
2 changes: 1 addition & 1 deletion features/org.jboss.tools.jst.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.features</groupId>
<artifactId>org.jboss.tools.jst.feature</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion features/org.jboss.tools.jst.test.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jst.test.feature"
label="%featureName"
version="3.10.400.qualifier"
version="3.10.500.qualifier"
provider-name="%providerName"
license-feature="org.jboss.tools.foundation.license.feature"
license-feature-version="0.0.0">
Expand Down
2 changes: 1 addition & 1 deletion features/org.jboss.tools.jst.test.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.features</groupId>
<artifactId>org.jboss.tools.jst.test.feature</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
<name>jst.features</name>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jst.feature</module>
Expand Down
4 changes: 2 additions & 2 deletions plugins/org.jboss.tools.jst.web.kb/.classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<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.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="resources/"/>
<classpathentry kind="output" path="target/classes"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web.kb/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.kb;singleton:=true
Bundle-Localization: plugin
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Bundle-Activator: org.jboss.tools.jst.web.kb.WebKbPlugin
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.core.runtime;bundle-version="3.7.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web.kb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions plugins/org.jboss.tools.jst.web.ui/.classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<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-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="resources/"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="output" path="target/classes"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="3.7.0",
org.eclipse.datatools.connectivity.db.generic.ui;bundle-version="1.0.1",
org.jboss.tools.common.el.ui,
org.eclipse.wst.html.core;bundle-version="1.1.502"
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-ClassPath: .
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.ui</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public IFigure getToolTip() {
return createToolTip();
}
};
fig.setExpanded(getDrawer().isInitiallyOpen());
fig.setPinned(getDrawer().isInitiallyPinned());
fig.setExpanded(getModel().isInitiallyOpen());
fig.setPinned(getModel().isInitiallyPinned());
fig.getCollapseToggle().setRequestFocusEnabled(true);
fig.getCollapseToggle().addFocusListener(new FocusListener() {
public void focusGained(FocusEvent fe) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public IFigure getToolTip() {
return createToolTip();
}
};
fig.setExpanded(getDrawer().isInitiallyOpen());
fig.setPinned(getDrawer().isInitiallyPinned());
fig.setExpanded(getModel().isInitiallyOpen());
fig.setPinned(getModel().isInitiallyPinned());
fig.getCollapseToggle().setRequestFocusEnabled(true);
fig.getCollapseToggle().addFocusListener(new FocusListener() {
public void focusGained(FocusEvent fe) {
Expand All @@ -66,8 +66,8 @@ public IFigure getToolTip() {
return createToolTip();
}
};
fig.setExpanded(getDrawer().isInitiallyOpen());
fig.setPinned(getDrawer().isInitiallyPinned());
fig.setExpanded(getModel().isInitiallyOpen());
fig.setPinned(getModel().isInitiallyPinned());
fig.getCollapseToggle().setRequestFocusEnabled(true);
fig.getCollapseToggle().addFocusListener(new FocusListener() {
public void focusGained(FocusEvent fe) {
Expand Down Expand Up @@ -128,7 +128,7 @@ private void updateMessage() {
}

private boolean isNoVisibleItems(){
for(Object child : getDrawer().getChildren()){
for(Object child : getModel().getChildren()){
if(!(child instanceof PaletteSeparator) && ((PaletteTool)child).isVisible()){
return false;
}
Expand All @@ -137,7 +137,7 @@ private boolean isNoVisibleItems(){
}

private boolean isEmpty(){
for(Object child : getDrawer().getChildren()){
for(Object child : getModel().getChildren()){
if(!(child instanceof PaletteSeparator)){
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.6
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Require-Bundle: org.jboss.tools.common.model;visibility:=reexport,
org.eclipse.jst.j2ee.ejb;bundle-version="1.1.502",
org.eclipse.jst.j2ee.web;bundle-version="1.1.500",
org.eclipse.jst.jee.web;bundle-version="1.0.400"
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Export-Package:
org.jboss.tools.jst.web,
org.jboss.tools.jst.web.browser,
Expand Down
2 changes: 1 addition & 1 deletion plugins/org.jboss.tools.jst.web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
<name>jst.plugins</name>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jst.web</module>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<artifactId>jst</artifactId>
<name>jbosstools-jst</name>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho.scmUrl>scm:git:https://github.com/jbosstools/jbosstools-jst.git</tycho.scmUrl>
Expand Down
2 changes: 1 addition & 1 deletion site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>jst.site</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: JST Reddeer
Bundle-SymbolicName: org.jboss.tools.jst.reddeer
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Bundle-Activator: org.jboss.tools.jst.reddeer.Activator
Require-Bundle: org.eclipse.ui,
org.junit,
Expand Down
2 changes: 1 addition & 1 deletion test-framework/org.jboss.tools.jst.reddeer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>test-framework</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>org.jboss.tools.jst.reddeer</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions test-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>test-framework</artifactId>
<name>jst.test-framework</name>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jst.reddeer</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Base Classes for JSP Editor Related Tests
Bundle-SymbolicName: org.jboss.tools.jst.jsp.base.test;singleton:=true
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.jface;bundle-version="3.7.0",
org.eclipse.core.resources;bundle-version="3.7.100",
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.jsp.base.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.jsp.base.test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.kb.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.kb.test;singleton:=true
Bundle-Localization: plugin
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.core.resources,
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.kb.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb.test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.test;singleton:=true
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Require-Bundle: org.jboss.tools.jst.web,
org.jboss.tools.common.base.test,
org.eclipse.core.runtime,
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.ui.test;singleton:=true
Bundle-Version: 3.10.400.qualifier
Bundle-Version: 3.10.500.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.jboss.tools.jst.web.ui,
org.jboss.tools.jst.web,
Expand Down
2 changes: 1 addition & 1 deletion tests/org.jboss.tools.jst.web.ui.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.ui.test</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<name>jst.tests</name>
<version>3.10.400-SNAPSHOT</version>
<version>3.10.500-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jst.jsp.base.test</module>
Expand Down

0 comments on commit efc35f0

Please sign in to comment.