From 14586606d243b33dd15b6139c54e9faa09c4a482 Mon Sep 17 00:00:00 2001
From: dgelessus <dgelessus@users.noreply.github.com>
Date: Mon, 7 Aug 2023 16:04:53 +0200
Subject: [PATCH] Update to com.gradle.plugin-publish version 1.2.0

---
 build.gradle | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/build.gradle b/build.gradle
index f95963b..ea4fed5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,8 +1,5 @@
 plugins {
-	id("java-gradle-plugin")
-	id("maven-publish")
-	
-	id("com.gradle.plugin-publish").version("0.21.0")
+	id("com.gradle.plugin-publish").version("1.2.0")
 }
 
 group = "de.hhu.stups"
@@ -22,18 +19,16 @@ if (project.hasProperty("gradlePublishSecret")) {
 }
 
 gradlePlugin {
+	website = "https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin"
+	vcsUrl = "https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin"
+	
 	plugins {
 		sableccPlugin {
 			id = "de.hhu.stups.sablecc"
 			displayName = "SableCC Gradle plugin"
 			description = "Generate parsers using SableCC"
+			tags.set(["sablecc", "parser", "generator"])
 			implementationClass = "de.hhu.stups.sablecc.gradle.SableCCPlugin"
 		}
 	}
 }
-
-pluginBundle {
-	website = "https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin"
-	vcsUrl = "https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin"
-	tags = ["sablecc", "parser", "generator"]
-}
-- 
GitLab