Skip to content

Commit

Permalink
Move to com.netflix.nebula.plugin-plugin plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Oct 11, 2022
1 parent 6bbbb1f commit e57811f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pluginBundle {
gradlePlugin {
plugins {
pluginPlugin {
id = 'nebula.plugin-plugin'
id = 'com.netflix.nebula.plugin-plugin'
displayName = 'Nebula Plugin Plugin'
description = 'Sets up publishing and release process for all of the other nebula plugins'
implementationClass = 'nebula.plugin.plugin.NebulaPluginPlugin'
Expand Down
2 changes: 1 addition & 1 deletion gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ com.netflix.nebula:gradle-java-cross-compile-plugin:7.0.0=compileClasspath,integ
com.netflix.nebula:gradle-scm-plugin:7.0.0=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependencies-comparison:0.2.1=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-gradle-interop:2.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-oss-publishing-plugin:3.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-oss-publishing-plugin:3.1.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-project-plugin:10.0.1=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-publishing-plugin:19.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-release-plugin:17.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class NebulaPluginPluginIntegrationSpec extends IntegrationSpec {
plugins {
id 'com.gradle.plugin-publish' version '0.9.4'
}
apply plugin: 'nebula.plugin-plugin'
apply plugin: 'com.netflix.nebula.plugin-plugin'
"""

expect:
Expand All @@ -17,7 +17,7 @@ class NebulaPluginPluginIntegrationSpec extends IntegrationSpec {

def 'plugin applies when plugin-publish is not applied'() {
buildFile << """
apply plugin: 'nebula.plugin-plugin'
apply plugin: 'com.netflix.nebula.plugin-plugin'
"""

expect:
Expand All @@ -26,7 +26,7 @@ class NebulaPluginPluginIntegrationSpec extends IntegrationSpec {

def 'plugin publishing is available'() {
buildFile << """
apply plugin: 'nebula.plugin-plugin'
apply plugin: 'com.netflix.nebula.plugin-plugin'
pluginBundle {
tags = ['nebula', 'kotlin']
}
Expand All @@ -39,7 +39,7 @@ class NebulaPluginPluginIntegrationSpec extends IntegrationSpec {

def 'plugin applies - disable marker tasks'() {
buildFile << """
apply plugin: 'nebula.plugin-plugin'
apply plugin: 'com.netflix.nebula.plugin-plugin'
tasks.register("helloMarkerMaven") {
doLast {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class NebulaPluginPluginPublishingIntegrationSpec extends GitVersioningIntegrati
@Override
def setupBuild() {
buildFile << """
apply plugin: 'nebula.plugin-plugin'
apply plugin: 'com.netflix.nebula.plugin-plugin'
"""
}

Expand Down

0 comments on commit e57811f

Please sign in to comment.