File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,20 @@ dependencies{
2121 testImplementation(libs.junit)
2222}
2323
24- // TODO: CI/CD for publishing the plugin to the Gradle Plugin Portal
2524gradlePlugin{
25+ website = " https://processing.org/"
26+ vcsUrl = " https://github.com/processing/processing4"
2627 plugins{
2728 create(" processing.java" ){
28- id = " org.processing.java"
29+ id = project.properties.getOrElse(" publishingGroup" , { " org.processing" }).toString() + " .java"
30+ displayName = " Processing Plugin"
31+ description = " Gradle plugin for building Processing sketches"
32+ tags = listOf (" processing" , " sketch" , " dsl" )
2933 implementationClass = " org.processing.java.gradle.ProcessingPlugin"
3034 }
3135 }
3236}
37+
3338publishing{
3439 repositories{
3540 mavenLocal()
You can’t perform that action at this time.
0 commit comments