Skip to content

Commit b97977a

Browse files
Rename plugin id to dgs.codegen.
1 parent 66ac913 commit b97977a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

graphql-dgs-codegen-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ gradlePlugin {
6666
// Define the plugin
6767
plugins {
6868
codegen {
69-
id = 'codegen-gradle-plugin'
69+
id = 'dgs.codegen'
7070
implementationClass = 'com.netflix.graphql.dgs.codegen.gradle.CodegenPlugin'
7171
}
7272
}

graphql-dgs-codegen-gradle/src/test/resources/test-project/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818

1919
plugins {
2020
id 'java'
21-
id 'codegen-gradle-plugin'
21+
id 'dgs.codegen'
2222
}
2323

2424
configurations {
2525
// injected by Gradle Runner through test configuration, see CodegenGradlePluginTest
26-
CodeGenConfiguration.exclude group: "netflix", module: "graphql-dgs-codegen-core"
26+
CodeGenConfiguration.exclude group: "com.netflix.graphql.dgs.codegen", module: "graphql-dgs-codegen-core"
2727
}
2828

2929
generateJava {

graphql-dgs-codegen-gradle/src/test/resources/test-project/build_with_default_dir.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818

1919
plugins {
2020
id 'java'
21-
id 'codegen-gradle-plugin'
21+
id 'dgs.codegen'
2222
}
2323

2424
configurations {
2525
// injected by Gradle Runner through test configuration, see CodegenGradlePluginTest
26-
CodeGenConfiguration.exclude group: "netflix", module: "graphql-dgs-codegen-core"
26+
CodeGenConfiguration.exclude group: "com.netflix.graphql.dgs.codegen", module: "graphql-dgs-codegen-core"
2727
}
2828

2929
generateJava {

0 commit comments

Comments
 (0)