Skip to content

Commit 9c2e149

Browse files
committed
Provides metadata for async and events plugins
Closes gh-68
1 parent 3cd5f7b commit 9c2e149

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

grace-plugin-async/src/main/groovy/org/grails/plugins/web/async/ControllersAsyncGrailsPlugin.groovy

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2011-2024 the original author or authors.
2+
* Copyright 2011-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,5 +28,11 @@ class ControllersAsyncGrailsPlugin extends Plugin {
2828

2929
def grailsVersion = "2023.0.0 > *"
3030
def loadAfter = ['controllers']
31+
def title = "Grace Async Plugin"
32+
def description = 'Grace Async Plugin'
33+
def documentation = "https://graceframework.org/grace-async/6.3.x/"
34+
def license = "APACHE"
35+
def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-async"]
36+
def scm = [url: "https://github.com/graceframework/grace-async"]
3137

3238
}

grace-plugin-events/src/main/groovy/org/grails/plugins/events/EventBusGrailsPlugin.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2024 the original author or authors.
2+
* Copyright 2014-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,5 +26,10 @@ import grails.plugins.Plugin
2626
class EventBusGrailsPlugin extends Plugin {
2727

2828
def grailsVersion = "2023.0.0 > *"
29+
def description = 'Grace Events Plugin'
30+
def documentation = "https://graceframework.org/grace-async/6.3.x/"
31+
def license = "APACHE"
32+
def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-async"]
33+
def scm = [url: "https://github.com/graceframework/grace-async"]
2934

3035
}

0 commit comments

Comments
 (0)