Skip to content

Commit

Permalink
remove obsolete compiler configuration
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 Jan 6, 2022
1 parent 92b4f04 commit 653905e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 69 deletions.
26 changes: 0 additions & 26 deletions jaxws-ri/extras/eclipselink_jaxb/pom.xml
Expand Up @@ -73,22 +73,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<!--adds reads for gmbal-->
<compilerArgs>
<arg>--add-reads</arg>
<arg>com.sun.xml.ws.eclipselink=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand All @@ -104,16 +88,6 @@
<testFailureIgnore>${ignore.failing.tests}</testFailureIgnore>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalJOptions>
<additionalJOption>--add-reads</additionalJOption>
<additionalJOption>com.sun.xml.ws.eclipselink=ALL-UNNAMED</additionalJOption>
</additionalJOptions>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2022 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 @@ -14,6 +14,7 @@
requires jakarta.mail;

requires com.sun.xml.ws;
requires org.eclipse.persistence.moxy;

exports com.sun.xml.ws.db.toplink;

Expand Down
6 changes: 3 additions & 3 deletions jaxws-ri/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2021 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2022 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 Down Expand Up @@ -98,7 +98,7 @@
<comp.xdoclint>-Xdoclint:none</comp.xdoclint>
<warn.limit>150</warn.limit>

<ignore.failing.tests>true</ignore.failing.tests>
<ignore.failing.tests>false</ignore.failing.tests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<oss.disallow.snapshots>true</oss.disallow.snapshots>
<vendor.name>Eclipse Foundation</vendor.name>
Expand Down Expand Up @@ -350,7 +350,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<configuration>
<archive>
<manifest>
Expand Down
13 changes: 1 addition & 12 deletions jaxws-ri/runtime/httpspi-servlet/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2021 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2022 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 Down Expand Up @@ -41,15 +41,4 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>--add-reads com.sun.xml.ws.httpspi.servlet=ALL-UNNAMED</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
</project>
28 changes: 1 addition & 27 deletions jaxws-ri/runtime/servlet/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2021 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2022 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 Down Expand Up @@ -41,30 +41,4 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<compilerArgs>
<arg>--add-reads</arg>
<arg>com.sun.xml.ws.servlet=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>--add-reads com.sun.xml.ws.servlet=ALL-UNNAMED</additionalOptions>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 653905e

Please sign in to comment.