11plugins {
2- id " com.gradle.plugin-publish" version " 0.14 .0"
2+ id " com.gradle.plugin-publish" version " 1.1 .0"
33 id " java-gradle-plugin"
44}
55
@@ -9,7 +9,6 @@ repositories {
99 }
1010 mavenCentral()
1111 mavenLocal()
12- jcenter()
1312}
1413
1514apply plugin : " java"
@@ -28,28 +27,24 @@ dependencies {
2827 implementation " io.github.kobylynskyi:graphql-java-codegen:${ version} "
2928
3029 implementation " org.freemarker:freemarker:2.3.31"
31- implementation " com.graphql-java:graphql-java:16.2 "
32- implementation " com.fasterxml.jackson.core:jackson-databind:2.13.3 "
30+ implementation " com.graphql-java:graphql-java:20.1 "
31+ implementation " com.fasterxml.jackson.core:jackson-databind:2.14.2 "
3332 implementation " com.typesafe:config:1.4.1"
3433
35- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.1 '
36- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.1 '
34+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.2 '
35+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.9.2 '
3736}
3837
3938gradlePlugin {
39+ website = ' https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/gradle/graphql-java-codegen-gradle-plugin'
40+ vcsUrl = ' https://github.com/kobylynskyi/graphql-java-codegen'
4041 plugins {
4142 graphqlCodegen {
4243 id = ' io.github.kobylynskyi.graphql.codegen'
4344 displayName = ' GraphQL Java Codegen'
44- description = project . description
45+ description = ' Gradle plugin for GraphQL Java code generation '
4546 implementationClass = ' io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradlePlugin'
47+ tags. set([' graphql' , ' graphql-java' , ' graphql-java-codegen' , ' graphql-codegen' ])
4648 }
4749 }
4850}
49-
50- pluginBundle {
51- website = ' https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/gradle/graphql-java-codegen-gradle-plugin'
52- vcsUrl = ' https://github.com/kobylynskyi/graphql-java-codegen'
53- description = ' Gradle plugin for GraphQL Java code generation'
54- tags = [' graphql' , ' graphql-java' , ' graphql-java-codegen' , ' graphql-codegen' ]
55- }
0 commit comments