File tree 1 file changed +14
-4
lines changed
graphql-dgs-codegen-gradle
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -33,18 +33,28 @@ dependencies {
33
33
34
34
description = ' Netflix GraphQL DGS Code Generation Plugin'
35
35
36
-
37
- group = ' com.netflix.graphql.dgs.codegen'
38
- gradlePlugin {
36
+ pluginBundle {
39
37
vcsUrl = ' https://github.com/Netflix/dgs-codegen.git'
40
38
description = ' Gradle plugin for generating Java and Kotlin types from GraphlQL Schema'
41
39
website = ' https://github.com/Netflix/dgs-codegen'
42
40
plugins {
43
41
codegen {
44
42
id = ' com.netflix.dgs.codegen'
45
43
displayName = ' DGS Code Generation Plugin'
46
- implementationClass = ' com.netflix.graphql.dgs.codegen.gradle.CodegenPlugin'
47
44
description = ' Gradle plugin for generating Java and Kotlin classes from GraphQL Schema'
45
+ tags = [' Codegen' ]
46
+ }
47
+ }
48
+ }
49
+
50
+ group = ' com.netflix.graphql.dgs.codegen'
51
+ gradlePlugin {
52
+ // Define the plugin
53
+ plugins {
54
+ codegen {
55
+ id = ' com.netflix.dgs.codegen'
56
+ implementationClass = ' com.netflix.graphql.dgs.codegen.gradle.CodegenPlugin'
57
+ displayName = ' DGS Code Generation Plugin'
48
58
}
49
59
}
50
60
}
You can’t perform that action at this time.
0 commit comments