-
Notifications
You must be signed in to change notification settings - Fork 16
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
Test Java Driver QueryBuilder private build, 4.19.0-preview1 #1615
Conversation
I think this is failing due to missing
there needs to be matching
(and same for .pom files) |
…d-test' into driver-querybuilder-private-build-test
@@ -79,6 +79,14 @@ | |||
</dependency> | |||
</dependencies> | |||
</dependencyManagement> | |||
<!-- Add local repository for private java driver queryBuilder build to avoid using systemPath in 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.
nit: can we include a link to an issue in our repo or the java driver that explains what we are waiting on, and how we can checked if the work has been done. We need the issue to stay open until we revert this change.
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.
added tacker issue
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.
approved - but please add comment with link to tracking issue , see comment
The previous PR for checking in the private java Driver 4.19.0-preview1 uses 'systemPath' to reference the jar. That is fine for Data API, however, it causes install problem to EGW which uses Data API as a jar. And it complains.
[ERROR] 'dependencies.dependency.systemPath' for com.datastax.oss:java-driver-query-builder:jar must specify an absolute path but is ${project.basedir}/lib/java-driver-query-builder-4.19.0-preview1.jar @
So, we still need to check in the Driver jar into Data API repo, but can not use . So I changed in Data API pom to search Driver queryBuilder in local repository. In this way, we can have a walk around.
Also, tested in EGW, it can be successfully built with Data API v1.0.19-SNAPSHOT now.
Checklist