Skip to content

Commit

Permalink
Move to com.netflix namespace for plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Oct 10, 2022
1 parent 8d49cfa commit 53348bb
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We produce a rules for dependencies found in Maven Central and other public repo

```groovy
allprojects {
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
}
dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pluginBundle {
gradlePlugin {
plugins {
resolutionRules {
id = 'nebula.resolution-rules'
id = 'com.netflix.nebula.resolution-rules'
implementationClass = 'nebula.plugin.resolutionrules.ResolutionRulesPlugin'
displayName = 'Gradle Resolution Rules plugin'
description = project.description
Expand Down
18 changes: 9 additions & 9 deletions gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ com.fasterxml.jackson.core:jackson-databind:2.9.10.8=compileClasspath,integTestC
com.fasterxml.jackson.module:jackson-module-kotlin:2.9.10=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.fasterxml.jackson:jackson-bom:2.9.10.20210106=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.google.guava:guava:20.0=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-dependency-lock-plugin:12.3.0=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-dependency-lock-plugin:12.7.1=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-scm-plugin:6.0.0=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependencies-comparison:0.2.1=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependency-recommender:11.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependency-recommender:12.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-gradle-interop:2.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-test:10.2.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
com.squareup.moshi:moshi:1.12.0=integTestRuntimeClasspath,testRuntimeClasspath
Expand All @@ -20,15 +20,15 @@ javax.inject:javax.inject:1=integTestRuntimeClasspath,runtimeClasspath,testRunti
joda-time:joda-time:2.10=integTestRuntimeClasspath,testRuntimeClasspath
junit:junit:4.12=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-lang3:3.8.1=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-artifact:3.8.2=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-builder-support:3.8.2=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-model-builder:3.8.2=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-model:3.8.2=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-artifact:3.8.3=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-builder-support:3.8.3=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-model-builder:3.8.3=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apache.maven:maven-model:3.8.3=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.apiguardian:apiguardian-api:1.1.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.codehaus.groovy:groovy:3.0.9=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-interpolation:1.25=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-utils:3.2.1=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-interpolation:1.26=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.codehaus.plexus:plexus-utils:3.3.0=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.eclipse.sisu:org.eclipse.sisu.inject:0.3.5=integTestRuntimeClasspath,runtimeClasspath,testRuntimeClasspath
org.hamcrest:hamcrest-core:1.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.hamcrest:hamcrest:2.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.jetbrains.kotlin:kotlin-reflect:1.5.31=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ abstract class AbstractAlignRulesSpec extends IntegrationTestKitSpec {
rulesJsonFile = new File(projectDir, "${moduleName}.json")
buildFile << """\
plugins {
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
id 'java'
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ buildscript {
}
plugins {
id 'java'
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
}
apply plugin: 'org.springframework.boot'$additionalPlugin
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AlignAndLockWithDowngradedTransitiveDependenciesSpec extends IntegrationTe
}
}
plugins {
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
id 'java'
}
apply plugin: 'nebula.dependency-lock'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1848,7 +1848,7 @@ class AlignAndSubstituteRulesSpec extends IntegrationTestKitSpec {
"""
plugins {
id 'java'
id 'nebula.resolution-rules'$pluginToAdd
id 'com.netflix.nebula.resolution-rules'$pluginToAdd
}
repositories {
maven { url '${projectDir.toPath().relativize(mavenrepo.toPath()).toFile()}' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -961,14 +961,14 @@ class AlignRulesBasicSpec extends AbstractAlignRulesSpec {

buildFile.text = """\
plugins {
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
}
allprojects {
group = 'example.nebula'
version = '1.2.0'
}
subprojects {
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
repositories {
${generator.mavenRepositoryBlock}
Expand Down Expand Up @@ -1034,10 +1034,10 @@ class AlignRulesBasicSpec extends AbstractAlignRulesSpec {

buildFile.text = """\
plugins {
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
repositories {
${generator.mavenRepositoryBlock}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AlignRulesBasicWithCoreSpec extends IntegrationTestKitSpec {

buildFile << """\
plugins {
id 'nebula.resolution-rules'
id 'com.netflix.nebula.resolution-rules'
id 'java'
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
apply plugin: 'nebula.dependency-recommender'
Expand Down Expand Up @@ -130,7 +130,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
apply plugin: 'nebula.dependency-recommender'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
Expand Down Expand Up @@ -192,7 +192,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
allprojects {
apply plugin: 'nebula.dependency-recommender'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
${mavenrepo.mavenRepositoryBlock}
Expand Down Expand Up @@ -261,7 +261,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'spring-boot'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories { mavenCentral() }
Expand Down Expand Up @@ -320,7 +320,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
apply plugin: 'spring-boot'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
Expand Down Expand Up @@ -378,7 +378,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
Expand Down Expand Up @@ -445,7 +445,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
apply plugin: 'nebula.dependency-recommender'
apply plugin: 'nebula.maven-publish'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
Expand Down Expand Up @@ -500,7 +500,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
allprojects {
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
${mavenrepo.mavenRepositoryBlock}
Expand Down Expand Up @@ -602,7 +602,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'java'
Expand Down Expand Up @@ -642,7 +642,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'java'
Expand Down Expand Up @@ -690,7 +690,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:11.+'
}
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'java'
repositories {
Expand Down Expand Up @@ -757,7 +757,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'java'
Expand Down Expand Up @@ -967,7 +967,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
allprojects {
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-recommender'
}
Expand Down Expand Up @@ -1056,7 +1056,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
allprojects {
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'nebula.dependency-recommender'
dependencyRecommendations {
strictMode = true
Expand Down Expand Up @@ -1098,7 +1098,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
apply plugin: 'nebula.dependency-lock'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
repositories {
Expand Down Expand Up @@ -1146,7 +1146,7 @@ class AlignRulesPluginInteractionSpec extends IntegrationTestKitSpec {
}
}
apply plugin: 'nebula.dependency-lock'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
apply plugin: 'java'
repositories {
${mavenrepo.mavenRepositoryBlock}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class IgnoredConfigurationsWithRulesSpec extends IntegrationSpec {

buildFile << """
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class ResolutionRulesPluginSpec extends IntegrationSpec {

buildFile << """
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
Expand Down Expand Up @@ -201,7 +201,7 @@ class ResolutionRulesPluginSpec extends IntegrationSpec {
def subproject = addSubproject("subprojectA")
new File(subproject, "build.gradle") << """
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
""".stripIndent()

when:
Expand Down Expand Up @@ -475,7 +475,7 @@ class ResolutionRulesPluginSpec extends IntegrationSpec {
given:
buildFile.text = """\
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
}
Expand Down Expand Up @@ -543,7 +543,7 @@ class ResolutionRulesPluginSpec extends IntegrationSpec {
apply plugin: 'java'
apply plugin: 'nebula.dependency-recommender'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
maven { url '${repo.root.absoluteFile.toURI()}' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SubstituteRulesSpec extends IntegrationSpec {

buildFile << """
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SubstituteRulesWithRangesSpec extends IntegrationTestKitSpec {

buildFile << """
apply plugin: 'java'
apply plugin: 'nebula.resolution-rules'
apply plugin: 'com.netflix.nebula.resolution-rules'
repositories {
mavenCentral()
Expand Down

0 comments on commit 53348bb

Please sign in to comment.