-
Notifications
You must be signed in to change notification settings - Fork 62
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
replace all (where stuff doesn't break) api with implementation calls #1859
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
The neo4j and console project are exposed in the |
If you add |
For neo4j it's tricker, it seems we are using a transitive dependency from neo4j (slf4j2) and we did not declare the usage of slf4j2 as a dependency. But we are using slf4j2's Logger as part of our public API, so we should instead specify slf4j2 as public API. |
Ah, and we have a second problem. We are using neo4j's annotation in our public API, so we need to include at least the annotation package as "api", but not the complete core. |
Ah, the annotations are part of core, so we are stuck with exposing OGM core Update: we can try the same "trick" as with apache commons, we can specify it as implementation of all modules. We just need to check if external programs still work |
Jackson can also be moved to common |
api(libs.apache.commons.lang3) | ||
api(libs.neo4j.ogm.core) | ||
api(libs.jackson) | ||
api(libs.slf4j.api) |
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 probably also moved to common dependencies
ibs.apache.commons.lang3
libs.neo4j.ogm.core