-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Port more gradle build logic from groovy to java #70247
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
- In general we want to move all production build logic to java - this is an incremental step towards that goal.
6cb4a7e to
74aae2d
Compare
|
Pinging @elastic/es-delivery (Team:Delivery) |
| throw new InvalidUserDataException("classname is a required setting for esplugin"); | ||
| } | ||
|
|
||
| Map<String, Object> map = new LinkedHashMap<>(12); |
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.
Does this need to be a LinkedHashMap?
| output.append("\n\n"); | ||
| // This is a map rather than a set so that the sort order is the 3rd | ||
| // party component names, unaffected by the full path to the various files | ||
| final Map<String, File> seen = new TreeMap<String, File>(); |
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.
Tiny nit-pick:
| final Map<String, File> seen = new TreeMap<String, File>(); | |
| final Map<String, File> seen = new TreeMap<>(); |
buildSrc/src/main/java/org/elasticsearch/gradle/NoticeTask.java
Outdated
Show resolved
Hide resolved
buildSrc/src/main/java/org/elasticsearch/gradle/plugin/PluginBuildPlugin.java
Outdated
Show resolved
Hide resolved
pugnascotia
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, couple of minor comments that you could ignore.
Co-authored-by: Rory Hunter <pugnascotia@users.noreply.github.com>
Co-authored-by: Rory Hunter <pugnascotia@users.noreply.github.com>
* Port more plugins from groovy to java - In general we want to move all production build logic to java - this is an incremental step towards that goal.
…) (#71673) - Port more plugins from groovy to java - In general we want to move all production build logic to java - this is an incremental step towards that goal.
Uh oh!
There was an error while loading. Please reload this page.