-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CXF-8700: Eliminate the java.compiler
dependency from cxf-core
#946
base: main
Are you sure you want to change the base?
Conversation
b0f28d8
to
14ff3fd
Compare
5656335
to
f62cbd4
Compare
enabling Karaf debug settings in |
@rotty3000 could you please uncomment |
@reta done! |
Could see a few things: system.properties:
/home/jenkins/workspace/CXF/CXF-JDK11-PR/.repository has
Looking why PAX does not seem to pick the artifacts. |
...ests/sts-itests/src/test/java/org/apache/cxf/systest/sts/itests/BasicSTSIntegrationTest.java
Outdated
Show resolved
Hide resolved
...ests/sts-itests/src/test/java/org/apache/cxf/systest/sts/itests/BasicSTSIntegrationTest.java
Outdated
Show resolved
Hide resolved
Oh, I see all checks have now passed :) |
Signed-off-by: Raymond Augé <rotty3000@apache.org>
…er to lower footprint of `java.desktop` dependency Signed-off-by: Raymond Augé <rotty3000@apache.org>
…esent, reduces the footprint of the `java.desktop` dependency Signed-off-by: Raymond Augé <rotty3000@apache.org>
…a.desktop` dependency Signed-off-by: Raymond Augé <rotty3000@apache.org>
…dependency on `java.desktop` Signed-off-by: Raymond Augé <rotty3000@apache.org>
…ere it's used, reduce footprint of `java.desktop` dependency Signed-off-by: Raymond Augé <rotty3000@apache.org>
Thanks for the pull request @rotty3000! My apologies for the delay looking into it. May I ask you please to split this request into smaller ones. It seems like you have bundled |
@@ -17,7 +17,7 @@ | |||
* under the License. | |||
*/ | |||
|
|||
package org.apache.cxf.common.util; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we please keep the same package? I understand that we would have package split brain but this is public API and if we want this change into 3.4.x / 3.5.x / 3.6.x, we should not break the possible consumers.
Alternatively, we could keep package change BUT introduce org.apache.cxf.common.util.Compiler
class which will delegate to org.apache.cxf.tools.compiler.Compiler
: it seems like public API is not using any dependencies from java.compiler
APIs.
@@ -414,6 +414,11 @@ | |||
<artifactId>cxf-tools-common</artifactId> | |||
<version>${project.version}</version> | |||
</dependency> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we should add this dependency to cxf-core
(which could be excluded on demand) to not break existing applications if anyone is using Compiler
class (since this is public API).
Signed-off-by: Raymond Augé rotty3000@apache.org