Skip to content

Commit 61290db

Browse files
committed
chore(gradle plugin): adjust plugin id and implementationClass
1 parent 17fdb1a commit 61290db

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

gradle-plugin/build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,16 @@ dependencies {
1616
gradlePlugin {
1717
plugins {
1818
create("graphql-kotlin-toolkit-codegen") {
19-
id = "org.auritylab.graphql.kotlin.codegen"
20-
implementationClass = "com.auritylab.graphql.kotlin.gradle.CodegenGradlePlugin"
19+
id = "org.auritylab.graphql-kotlin-toolkit.codegen"
20+
implementationClass = "com.auritylab.graphql.kotlin.toolkit.gradle.CodegenGradlePlugin"
2121
}
2222
}
2323
}
2424

2525
publishing {
2626
publications {
2727
create<MavenPublication>("maven") {
28-
groupId = "com.auritylab.graphql.kotlin.codegen"
2928
artifactId = "gradle-plugin"
30-
version = "1.0.0"
3129

3230
from(components["java"])
3331
}

0 commit comments

Comments
 (0)