This is an automated email from the ASF dual-hosted git repository.
ema pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/master by this push:
new 117074497b [CXF-8695]:Remove duplicate copied class from cxf-core in
cxf-rt-management
117074497b is described below
commit 117074497b45d3eeaf8376e580e34f9945e8f620
Author: Jim Ma <[email protected]>
AuthorDate: Fri Apr 22 09:07:44 2022 +0800
[CXF-8695]:Remove duplicate copied class from cxf-core in cxf-rt-management
---
rt/management/pom.xml | 48 ------------------------------------------------
1 file changed, 48 deletions(-)
diff --git a/rt/management/pom.xml b/rt/management/pom.xml
index ccbcc7caa8..fc9ad72d84 100644
--- a/rt/management/pom.xml
+++ b/rt/management/pom.xml
@@ -124,52 +124,4 @@
</plugin>
</plugins>
</build>
- <profiles>
- <profile>
- <id>java9-plus</id>
- <activation>
- <jdk>[9,)</jdk>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <executions>
- <execution>
- <id>compile-java11-sources</id>
- <phase>compile</phase>
- <goals>
- <goal>compile</goal>
- </goals>
- <configuration>
-
<showDeprecation>${cxf.compile.show.deprecation}</showDeprecation>
- <showWarnings>true</showWarnings>
- <source>11</source>
- <target>11</target>
-
<outputDirectory>target/classes/META-INF/versions/11</outputDirectory>
- <compilerArgs>
- <arg>${cxf.compile.flags}</arg>
-
<arg>--add-exports</arg><arg>java.rmi/sun.rmi.registry=ALL-UNNAMED</arg>
- </compilerArgs>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <configuration>
- <obrRepository>NONE</obrRepository>
- <instructions>
-
<Export-Package>org.apache.cxf.management*,org.apache.cxf.tracing*</Export-Package>
- </instructions>
- <niceManifest>true</niceManifest>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>