Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit f258d96

Browse files
committed
Remove project group from the Bintray package name
The group id is still used for dependency resolution, but should not be in the actual Bintray package name.
1 parent d110e69 commit f258d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

profiles/plugin/templates/bintrayPublishing.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ bintray {
66
pkg {
77
repo = project.hasProperty('repo') ? project.repo : 'plugins'
88
userOrg = project.hasProperty('userOrg') ? project.userOrg : 'grails'
9-
name = "$project.group:$project.name"
9+
name = "$project.name"
1010
desc = project.hasProperty('desc') ? project.desc : "Grails $project.name plugin"
1111
websiteUrl = project.hasProperty('websiteUrl') ? project.websiteUrl : "http://grails.org/plugin/$project.name"
1212
issueTrackerUrl = project.hasProperty('issueTrackerUrl') ? project.issueTrackerUrl : "https://github.com/grails3-plugins/$project.name/issues"

0 commit comments

Comments
 (0)