Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello! Some of us here at Puppet Labs are using ci-eye for our build radiators and I'd like to start extending its functionality a bit, but before I do that I'd really like to use a modern build system. This PR converts the build to gradle and the following commands will be the ones a person would need for development:
gradle test
- Run the unit testsgradle fatJar
- Build the fat jar and place it in the ./build/lib directory.gradle idea
- Generate Idea project files.gradle eclipse
- Generate Eclipse project files.Note that with a modern version of Idea, instead of running
gradle idea
, you can actually just open thegradle.build
file directly and the project will be opened.