From a454d5f0cf2c207edbc24fdf57d64b9d7efc64fe Mon Sep 17 00:00:00 2001 From: Roberto Perez Alcolea Date: Mon, 10 Oct 2022 09:19:47 -0700 Subject: [PATCH] Create new plugin ids --- build.gradle | 8 ++++---- .../plugin/responsible/NebulaIntegTestPluginSpec.groovy | 2 +- .../NebulaIntegTestStandalonePluginSpec.groovy | 2 +- .../NebulaResponsiblePluginLauncherSpec.groovy | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 5ee8c9b..0a5b8f2 100644 --- a/build.gradle +++ b/build.gradle @@ -47,25 +47,25 @@ pluginBundle { gradlePlugin { plugins { nebulaProject { - id = 'nebula.project' + id = 'com.netflix.nebula.project' displayName = 'Nebula Project' description = project.description implementationClass = 'nebula.plugin.responsible.NebulaResponsiblePlugin' } nebulaIntegTest { - id = 'nebula.integtest' + id = 'com.netflix.nebula.integtest' displayName = 'Nebula Integration Test' description = 'Adds source set and task for running integration tests separately from unit tests' implementationClass = 'nebula.plugin.responsible.NebulaIntegTestPlugin' } nebulaFacet { - id = 'nebula.facet' + id = 'com.netflix.nebula.facet' displayName = 'Nebula Facet' description = 'Reduce boilerplate for adding additional source sets' implementationClass = 'nebula.plugin.responsible.NebulaFacetPlugin' } nebulaIntegTestStandalone { - id = 'nebula.integtest-standalone' + id = 'com.netflix.nebula.integtest-standalone' displayName = 'Nebula Integration Test Standalone' description = 'Adds source set and task for running integration tests separately from unit tests (standalone)' implementationClass = 'nebula.plugin.responsible.NebulaIntegTestStandalonePlugin' diff --git a/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestPluginSpec.groovy b/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestPluginSpec.groovy index 1d6a964..7a5ab80 100644 --- a/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestPluginSpec.groovy +++ b/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestPluginSpec.groovy @@ -9,7 +9,7 @@ class NebulaIntegTestPluginSpec extends PluginProjectSpec { @Override String getPluginName() { - return 'nebula.integtest' + return 'com.netflix.nebula.integtest' } def 'after applying java plugin'() { diff --git a/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestStandalonePluginSpec.groovy b/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestStandalonePluginSpec.groovy index 927f2cb..2a0d1bc 100644 --- a/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestStandalonePluginSpec.groovy +++ b/src/test/groovy/nebula/plugin/responsible/NebulaIntegTestStandalonePluginSpec.groovy @@ -9,7 +9,7 @@ class NebulaIntegTestStandalonePluginSpec extends PluginProjectSpec { @Override String getPluginName() { - return 'nebula.integtest-standalone' + return 'com.netflix.nebula.integtest-standalone' } def 'after applying java plugin'() { diff --git a/src/test/groovy/nebula/plugin/responsible/NebulaResponsiblePluginLauncherSpec.groovy b/src/test/groovy/nebula/plugin/responsible/NebulaResponsiblePluginLauncherSpec.groovy index 13eac96..e8a76e8 100644 --- a/src/test/groovy/nebula/plugin/responsible/NebulaResponsiblePluginLauncherSpec.groovy +++ b/src/test/groovy/nebula/plugin/responsible/NebulaResponsiblePluginLauncherSpec.groovy @@ -9,7 +9,7 @@ class NebulaResponsiblePluginLauncherSpec extends IntegrationTestKitSpec { buildFile << """ plugins { id 'java' - id 'nebula.project' + id 'com.netflix.nebula.project' } """ }