Skip to content

Commit

Permalink
JBTIS-1245: Update UI tests for JDK 11
Browse files Browse the repository at this point in the history
Signed-off-by: Andrej Podhradsky <apodhrad@redhat.com>
  • Loading branch information
apodhrad committed May 9, 2019
1 parent e1046fe commit a79ec24
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 3 deletions.
64 changes: 64 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,69 @@
<jbtis.repo>stable</jbtis.repo>
</properties>
</profile>
<profile>
<id>jdk9-build</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.3.0</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>javax.activation</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.sun.xml.messaging.saaj</groupId>
<artifactId>saaj-impl</artifactId>
<version>1.4.0-b03</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.rmi</groupId>
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
<version>1.0.6.Final</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
3 changes: 2 additions & 1 deletion tests/org.jboss.tools.bpel.ui.bot.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.reddeer.gef;bundle-version="2.0.1",
org.jboss.tools.common.reddeer;bundle-version="4.6.0",
org.jboss.tools.runtime.reddeer;bundle-version="4.6.0",
org.jboss.tools.bpel.reddeer;bundle-version="4.6.0"
org.jboss.tools.bpel.reddeer;bundle-version="4.6.0",
javax.xml.soap
Bundle-ActivationPolicy: lazy
Import-Package: org.apache.log4j
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Expand Down
3 changes: 2 additions & 1 deletion tests/org.jboss.tools.bpmn2.ui.bot.test/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ Require-Bundle:
org.jboss.tools.bpmn2.reddeer;bundle-version="4.5.0",
org.jboss.tools.runtime.reddeer;bundle-version="4.5.0",
org.eclipse.reddeer.go;bundle-version="2.0.1",
org.eclipse.reddeer.junit;bundle-version="2.0.0"
org.eclipse.reddeer.junit;bundle-version="2.0.0",
javax.xml.bind
Bundle-ActivationPolicy: lazy
Bundle-Vendor: JBoss by Red Hat
Eclipse-RegisterBuddy: org.apache.log4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Require-Bundle: org.eclipse.ui,
org.jboss.tools.runtime.reddeer;bundle-version="4.6.0",
org.jboss.tools.common.reddeer;bundle-version="4.6.0",
com.fasterxml.jackson.core.jackson-databind;bundle-version="2.6.2",
com.fasterxml.jackson.core.jackson-core;bundle-version="2.6.2"
com.fasterxml.jackson.core.jackson-core;bundle-version="2.6.2",
javax.xml.bind
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Eclipse-RegisterBuddy: org.apache.log4j

0 comments on commit a79ec24

Please sign in to comment.