Skip to content

Commit cc780cf

Browse files
committed
Update build.gradle.kts
1 parent 0cf146a commit cc780cf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

java/gradle/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2524
gradlePlugin{
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 = "$group.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+
3338
publishing{
3439
repositories{
3540
mavenLocal()

0 commit comments

Comments
 (0)