Skip to content

Commit

Permalink
restore pluginBundle block.
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasankavitha committed Aug 22, 2023
1 parent ec47894 commit 5ebeefa
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions graphql-dgs-codegen-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,28 @@ dependencies {

description = 'Netflix GraphQL DGS Code Generation Plugin'


group = 'com.netflix.graphql.dgs.codegen'
gradlePlugin {
pluginBundle {
vcsUrl = 'https://github.com/Netflix/dgs-codegen.git'
description = 'Gradle plugin for generating Java and Kotlin types from GraphlQL Schema'
website = 'https://github.com/Netflix/dgs-codegen'
plugins {
codegen {
id = 'com.netflix.dgs.codegen'
displayName = 'DGS Code Generation Plugin'
implementationClass = 'com.netflix.graphql.dgs.codegen.gradle.CodegenPlugin'
description = 'Gradle plugin for generating Java and Kotlin classes from GraphQL Schema'
tags = ['Codegen']
}
}
}

group = 'com.netflix.graphql.dgs.codegen'
gradlePlugin {
// Define the plugin
plugins {
codegen {
id = 'com.netflix.dgs.codegen'
implementationClass = 'com.netflix.graphql.dgs.codegen.gradle.CodegenPlugin'
displayName = 'DGS Code Generation Plugin'
}
}
}
Expand Down

0 comments on commit 5ebeefa

Please sign in to comment.