Skip to content

Commit

Permalink
re-enable tests for sdo databinding plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed May 15, 2020
1 parent 21c48c3 commit 6e0d3b2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 24 deletions.
34 changes: 11 additions & 23 deletions jaxws-ri/extras/eclipselink_sdo/pom.xml
Expand Up @@ -30,6 +30,7 @@

<properties>
<spotbugs.exclude>${project.basedir}/exclude.xml</spotbugs.exclude>
<argLine/>
</properties>

<dependencies>
Expand Down Expand Up @@ -58,24 +59,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<excludeScope>provided</excludeScope>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -96,11 +79,16 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!--TODO tests are skipped due to
Modules commonj.sdo and org.eclipse.persistence.sdo export package commonj.sdo.impl to module ha.api
remove after Eclipselink split package resolution.
-->
<skip>true</skip>
<argLine>
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.test=ALL-UNNAMED
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.test.add=ALL-UNNAMED
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.test.helloSDO=ALL-UNNAMED
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.sample.service=ALL-UNNAMED
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.sample.service=com.sun.xml.ws
--add-exports com.sun.xml.ws.sdo/com.sun.xml.ws.sdo.sample.service.types=ALL-UNNAMED
@{argLine}
</argLine>
<forkCount>1</forkCount>
</configuration>
</plugin>
<plugin>
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
Expand All @@ -10,6 +10,7 @@

module com.sun.xml.ws.sdo {

requires java.logging;
requires com.sun.xml.ws;

exports com.sun.xml.ws.db.sdo;
Expand Down

0 comments on commit 6e0d3b2

Please sign in to comment.