-
Notifications
You must be signed in to change notification settings - Fork 521
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
refact: adapt apache package and dependency in all modules (Breaking Change) #2019
Conversation
also need to rebuild license? @simon824 |
Codecov Report
@@ Coverage Diff @@
## master #2019 +/- ##
============================================
+ Coverage 66.32% 66.39% +0.07%
Complexity 976 976
============================================
Files 482 482
Lines 41463 41455 -8
Branches 5890 5888 -2
============================================
+ Hits 27500 27526 +26
+ Misses 11263 11232 -31
+ Partials 2700 2697 -3
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
hugegraph-core/src/main/java/org/apache/hugegraph/util/ConfigUtil.java
Outdated
Show resolved
Hide resolved
@z7658329 can we move the CodeQL fixes into a separate PR? |
hugegraph-api/src/main/java/org/apache/hugegraph/api/auth/BelongAPI.java
Outdated
Show resolved
Hide resolved
hugegraph-api/src/main/java/org/apache/hugegraph/api/auth/GroupAPI.java
Outdated
Show resolved
Hide resolved
hugegraph-api/src/main/java/org/apache/hugegraph/api/graph/VertexAPI.java
Outdated
Show resolved
Hide resolved
hugegraph-api/src/main/java/org/apache/hugegraph/api/job/AlgorithmAPI.java
Outdated
Show resolved
Hide resolved
hugegraph-api/src/main/java/org/apache/hugegraph/api/graph/EdgeAPI.java
Outdated
Show resolved
Hide resolved
hugegraph-core/src/main/java/org/apache/hugegraph/HugeGraph.java
Outdated
Show resolved
Hide resolved
hugegraph-core/src/main/java/org/apache/hugegraph/auth/ResourceObject.java
Outdated
Show resolved
Hide resolved
some TODOs & Warning:
@javeme why we need check common's version? |
|
What does this mean? At present, the whole project seems to have only one |
someone may import hg as a lib, at the same time also has imported hg-common. |
Seems it should be handled by users(like use a fixed version or exclude the duplicate one), and currently it have 2 problems:
consider handle this in a separate PR |
@@ -130,16 +82,16 @@ | |||
|
|||
<dependencyManagement> | |||
<dependencies> | |||
<!-- hugegraph-commons --> | |||
<!-- TODO: could we merge them to hugegraph-commons only? --> |
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.
no we can't merge them, because in some scenarios it is not necessary to import both the two packages at the same time, like client or loader.
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.
OK, change the comment in next PR (could modify the common version together @z7658329 )
|
so the VersionTest.testCoreVersionCheck successed! we need update commons jar? @javeme @imbajin |
c2dfb03
to
f1db302
Compare
TODO: and we need also check the 0.69 in pom
22c4012
to
64e7357
Compare
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.
use rebase and merge
implement #1985