This is an automated email from the ASF dual-hosted git repository.
ema pushed a commit to branch 3.5.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/3.5.x-fixes by this push:
new 877202fde5 [CXF-8695]:Remove duplicate copied class from cxf-core in
cxf-rt-management
877202fde5 is described below
commit 877202fde51fee75a9599ae6dd1a2a29a7e58df1
Author: Jim Ma <[email protected]>
AuthorDate: Fri Apr 22 09:10:23 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 55114d7a9d..b8f86b0728 100644
--- a/rt/management/pom.xml
+++ b/rt/management/pom.xml
@@ -119,52 +119,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>