Skip to content

Commit

Permalink
Create new plugin ids
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Oct 10, 2022
1 parent ff0a9a8 commit a454d5f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class NebulaIntegTestPluginSpec extends PluginProjectSpec {

@Override
String getPluginName() {
return 'nebula.integtest'
return 'com.netflix.nebula.integtest'
}

def 'after applying java plugin'() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class NebulaResponsiblePluginLauncherSpec extends IntegrationTestKitSpec {
buildFile << """
plugins {
id 'java'
id 'nebula.project'
id 'com.netflix.nebula.project'
}
"""
}
Expand Down

0 comments on commit a454d5f

Please sign in to comment.