-
Notifications
You must be signed in to change notification settings - Fork 639
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
[ISSUE #4864] Remove artifacts with incompatible licenses from jdbc-connector #4863
Conversation
Please be informed that the PR title doesn't correspond to its change. |
implementation 'com.alibaba:druid:1.2.20' | ||
implementation 'org.hibernate:hibernate-core:5.6.15.Final' | ||
compileOnly 'org.hibernate:hibernate-core:5.6.15.Final' | ||
implementation project(":eventmesh-common") | ||
implementation project(":eventmesh-openconnect:eventmesh-openconnect-java") | ||
implementation project(":eventmesh-spi") | ||
implementation 'com.zendesk:mysql-binlog-connector-java:0.28.0' | ||
implementation 'mysql:mysql-connector-java:8.0.32' | ||
compileOnly 'mysql:mysql-connector-java:8.0.32' | ||
|
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.
mysql-connector-java
has been redirected to mysql-connector-j
.
Although switching to compileOnly
scope, its artifact jar package will still be bundled in our binary distribution. Therefore we will have to remove it manually before releasing, inform users to download its jar package, and put the jar file into the lib
directory.
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.
This conversation is a inform and no changes are requested.
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.
Sorry I mistook it as runtimeOnly
. It do remove artifacts from classpath, and no more manual operation is needed. Users will still have to download and put jar file by themselves.
Please review this PR try again @Pil0tXia |
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.
LGTM
This PR is a subtask of #4842
fix #4864
Motivation
Explain the content here.
Explain why you want to make the changes and what problem you're trying to solve.
Modifications
Describe the modifications you've done.
Documentation