Gradle Plugin for creating Processing Libraries #1347
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.
This PR will add a Gradle Plugin for defining Processing/Java libraries, it reduces the necessary setup of creating a new Processing library to following in a
build.gradle.ktsfile.This will add the functionality of bundling a Processing library as a
.zipand.pdexas well as functionality to install the new library directly into Processing to test.I think we should create similar plugins for modes and tools!
TODO
After merging
@tychedelia I've put the plugin in
gradle/pluginsrather thanbuildSrcas I'd like to avoid growing the top level folders in the repo, curious what you think about that or if I should rather stick to convention? So far functionality wise it seems the same.