-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix plugin build
- Loading branch information
Showing
3 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,21 @@ import org.grails.web.servlet.view.GroovyPageViewResolver | |
class ScaffoldingGrailsPlugin extends Plugin { | ||
|
||
// the version or versions of Grails the plugin is designed for | ||
def grailsVersion = "5.0.0 > *" | ||
def grailsVersion = "2022.0.0 > *" | ||
// resources that are excluded from plugin packaging | ||
def pluginExcludes = [ | ||
"grails-app/views/error.gsp" | ||
] | ||
|
||
def title = "Scaffolding Plugin" // Headline display name of the plugin | ||
def author = "Graeme Rocher" | ||
def authorEmail = "[email protected]" | ||
def author = "Michael Yan" | ||
def authorEmail = "[email protected]" | ||
def description = '''\ | ||
Plugin that generates scaffolded controllers and views for a Grails application. | ||
Plugin that generates scaffolded controllers and views for a Grace application. | ||
''' | ||
|
||
// URL to the plugin's documentation | ||
def documentation = "http://grails.org/plugin/scaffolding" | ||
def documentation = "https://github.com/graceframework/grace-scaffolding" | ||
|
||
// Extra (optional) plugin metadata | ||
|
||
|
@@ -29,10 +29,10 @@ Plugin that generates scaffolded controllers and views for a Grails application. | |
|
||
|
||
// Location of the plugin's issue tracker. | ||
def issueManagement = [ system: "Github", url: "https://github.com/grails3-plugins/scaffolding/issues" ] | ||
def issueManagement = [ system: "Github", url: "https://github.com/graceframework/grace-scaffolding/issues" ] | ||
|
||
// Online location of the plugin's browseable source code. | ||
def scm = [ url: "https://github.com/grails3-plugins/scaffolding" ] | ||
def scm = [ url: "https://github.com/graceframework/grace-scaffolding" ] | ||
|
||
def loadAfter = ["groovyPages"] | ||
|
||
|