From 977a79158b3b348b1f90526a685e660546aaddbe Mon Sep 17 00:00:00 2001 From: Michael Yan Date: Tue, 1 Oct 2024 09:48:59 +0800 Subject: [PATCH] Remove `@PluginSource` on `GebGrailsPlugin` --- src/main/groovy/geb/GebGrailsPlugin.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/groovy/geb/GebGrailsPlugin.groovy b/src/main/groovy/geb/GebGrailsPlugin.groovy index d44a4c2..ca9ad36 100644 --- a/src/main/groovy/geb/GebGrailsPlugin.groovy +++ b/src/main/groovy/geb/GebGrailsPlugin.groovy @@ -1,12 +1,11 @@ package geb import grails.plugins.Plugin -import grails.plugins.metadata.PluginSource import groovy.transform.CompileStatic -@PluginSource @CompileStatic class GebGrailsPlugin extends Plugin { + def grailsVersion = "2023.0.0 > *" def pluginExcludes = [ "grails-app/views/error.gsp" @@ -21,4 +20,5 @@ Plugin that adds Geb functional testing code generation features. def license = "APACHE" def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-geb"] def scm = [url: "https://github.com/graceframework/grace-geb"] + }