-
Notifications
You must be signed in to change notification settings - Fork 998
use File type for javaHome and bump build-tools version #1338
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
Conversation
|
|
||
| // Provided/Optional Dependencies | ||
| compile 'org.springframework.build.gradle:propdeps-plugin:0.0.7' | ||
| implementation 'org.apache.logging.log4j:log4j-core:2.11.1' |
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 is necessary, else the build will fail. (it is also present in 7.x)
|
This is what the failure this fixes looks like |
jbaiera
left a comment
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
| elasticsearch = 8.0.0 | ||
| lucene = 8.1.0-snapshot-e460356abe | ||
| build-tools = 7.1.1 | ||
| build-tools = 7.4.0-SNAPSHOT |
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.
Thanks for bumping this up. We're pretty close to being able to run against the master build tools here soon enough.
As of elastic/elasticsearch#45677 build tools now uses a function that requires JavaHome to be a File type. This commit updates the JavaHome property to be a File type.
As of elastic/elasticsearch#45677 build tools
now uses a function that requires javaHome to be a
Filetype.This commit updates the JavaHome property to be a File type. This
commit also bumps the latest supported version of build-tools (8.0.0-SNAPSHOT
is not supported yet).