From 618d8b518fc3029a9d85ae1e65d72f9006cb2c6b Mon Sep 17 00:00:00 2001 From: Philip Crotwell Date: Tue, 27 Feb 2024 15:09:10 -0500 Subject: [PATCH] url and vcs to plugin block --- build.gradle | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index eae74f9..719135c 100644 --- a/build.gradle +++ b/build.gradle @@ -35,22 +35,16 @@ publishing { } } -/* -pluginBundle { +gradlePlugin { website = 'https://github.com/crotwell/gradle-macappbundle' vcsUrl = 'https://github.com/crotwell/gradle-macappbundle.git' - tags = [ 'gradle', 'plugin', 'macappbundle', 'dmg', 'osx'] - - -} */ - -gradlePlugin { plugins { macappbundle { id = 'edu.sc.seis.macAppBundle' displayName = 'MacApp Bundle plugin' description = 'A Gradle Plugin to create a Mac OSX .app application based on the project. ' implementationClass = 'edu.sc.seis.macAppBundle.MacAppBundlePlugin' + tags.set([ 'gradle', 'plugin', 'macappbundle', 'dmg', 'osx']) } } }