Skip to content

Commit

Permalink
Fix 'gradle.plugin' group prefixes in our published plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielThomas committed Jun 2, 2016
1 parent 1a187da commit 49e0d86
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class NebulaPluginPlugin implements Plugin<Project> {
dependencies {
compile gradleApi()
compile localGroovy()

testCompile('com.netflix.nebula:nebula-test:4.2.0') {
exclude group: 'org.codehaus.groovy'
}
Expand Down Expand Up @@ -90,8 +91,8 @@ class NebulaPluginPlugin implements Plugin<Project> {
description = project.description

mavenCoordinates {
groupId = group
artifactId = name
groupId = project.group
artifactId = project.name
}
}
def publishPlugins = tasks.publishPlugins
Expand Down

0 comments on commit 49e0d86

Please sign in to comment.