-
Notifications
You must be signed in to change notification settings - Fork 495
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
NO AUTO Does a tidy-up and clean-up after splitting most of the code #3123
Conversation
ncordon
commented
Aug 9, 2022
- Moves more files to full (the ones that are only needed there and not in core)
- Tidy ups dependencies: there were lots of unused things.
- Removes sonarqube plugin. I don't think this was used anymore, this is from the old days when the code was published to Sonar rather than Maven.
1591d60
to
5b9fc3e
Compare
5b9fc3e
to
deceb77
Compare
testImplementation group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.2.22.v20170606' | ||
testImplementation group: 'org.apache.derby', name: 'derby', version: '10.12.1.1' | ||
|
||
testImplementation group: 'org.postgresql', name: 'postgresql', version: '42.1.4' |
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.
It looks like a test for the Postgres driver is failing for a genuine reason. Could be that this Postgres dependency is needed?
You may wish to run the tests locally if you haven't already, since many of these types of tests are probably disabled in the CI.
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.
Yep good catch, I've brought back this, but I don't understand how the code compiles if we need it in runtime
}); | ||
} | ||
|
||
} |
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 think you may have wanted to delete the src/test/Examples.java instead of the src/test/ExamplesTest.java?
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.
Nice catch man
37be438
to
167a884
Compare
167a884
to
af2bca2
Compare
@@ -71,7 +70,7 @@ subprojects { | |||
|
|||
// neo4jDockerImage system property is used in TestContainerUtil | |||
systemProperties 'user.language' : 'en' , | |||
'user.country ' : 'US', | |||
'user.country' : 'US', |
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 was spotted by @AzuObs, not me
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.
Great job on this! 🙌