This is an automated email from the ASF dual-hosted git repository. jonnybot pushed a commit to branch fix-gradle-plugin-publication in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
commit 41e1bd910dc7665bfa6f07e56a4703d9a03c0186 Author: Jonny Carter <[email protected]> AuthorDate: Tue Dec 30 11:06:25 2025 -0600 Update Gradle plugin IDs --- integration/geb-gradle/plugin-definitions.gradle | 8 ++++---- module/geb-core/geb-core.gradle | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/integration/geb-gradle/plugin-definitions.gradle b/integration/geb-gradle/plugin-definitions.gradle index 0e5f8d1b..21024fb5 100644 --- a/integration/geb-gradle/plugin-definitions.gradle +++ b/integration/geb-gradle/plugin-definitions.gradle @@ -21,25 +21,25 @@ List<String> pluginTags = ["geb", "testing", "cloud", "browser"] gradlePlugin { plugins { sauceLabsPlugin { - id = 'org.gebish.saucelabs' + id = 'org.apache.groovy.geb.saucelabs' displayName = "Geb Sauce Labs plugin" description = "A plugin that simplifies running Geb tests at Sauce Labs" implementationClass = 'geb.gradle.saucelabs.SaucePlugin' tags = pluginTags } browserStackPlugin { - id = 'org.gebish.browserstack' + id = 'org.apache.groovy.geb.browserstack' displayName = "Geb BrowserStack plugin" description = "A plugin that simplifies running Geb tests at BrowserStack" implementationClass = 'geb.gradle.browserstack.BrowserStackPlugin' tags = pluginTags } lambdaTestPlugin { - id = 'org.gebish.lambdatest' + id = 'org.apache.groovy.geb.lambdatest' displayName = "Geb LambdaTest plugin" description = "A plugin that simplifies running Geb tests at LambdaTest" implementationClass = 'geb.gradle.lambdatest.LambdaTestPlugin' tags = pluginTags } } -} \ No newline at end of file +} diff --git a/module/geb-core/geb-core.gradle b/module/geb-core/geb-core.gradle index e74fd919..f45bca73 100644 --- a/module/geb-core/geb-core.gradle +++ b/module/geb-core/geb-core.gradle @@ -23,9 +23,9 @@ import geb.gradle.lambdatest.LambdaTestAccount plugins { id 'geb.api-module' id 'geb.dockerised-test' - id 'org.gebish.browserstack' - id 'org.gebish.saucelabs' - id 'org.gebish.lambdatest' + id 'org.apache.groovy.geb.browserstack' + id 'org.apache.groovy.geb.saucelabs' + id 'org.apache.groovy.geb.lambdatest' id 'geb.all-sources-configuration' }
