Skip to content

Commit b652f60

Browse files
committed
Change PluginDefiner org.grails.plugins to org.graceframework.plugins
Closes gh-777
1 parent 35a72d7 commit b652f60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grace-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/core/PluginDefiner.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2022 the original author or authors.
2+
* Copyright 2014-2024 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.
@@ -49,14 +49,14 @@ class PluginDefiner {
4949
if (argArray[0] instanceof Map) {
5050
Map notation = (Map) argArray[0]
5151
if (!notation.containsKey('group')) {
52-
notation.put('group', 'org.grails.plugins')
52+
notation.put('group', 'org.graceframework.plugins')
5353
}
5454
}
5555
else if (argArray[0] instanceof CharSequence) {
5656
String str = argArray[0]
5757

5858
if (str.startsWith(':')) {
59-
argArray[0] = "org.grails.plugins$str".toString()
59+
argArray[0] = "org.graceframework.plugins$str".toString()
6060
}
6161
}
6262
else if (Environment.isDevelopmentRun() && (argArray[0] instanceof ProjectDependency)) {

0 commit comments

Comments
 (0)