@@ -2,7 +2,7 @@ import java.text.SimpleDateFormat
22
33
44plugins {
5- id " com.jfrog.bintray" version " 1.8.4 "
5+ id " com.jfrog.bintray" version " 1.8.5 "
66}
77
88apply plugin : ' java'
@@ -39,26 +39,25 @@ repositories {
3939
4040
4141dependencies {
42- compile " com.graphql-java:graphql-java:13 .0"
42+ compile " com.graphql-java:graphql-java:14 .0"
4343 compile ' org.slf4j:slf4j-api:1.7.25'
44- compile " javax.validation:validation-api:2.0.1.Final"
45- compile " org.hibernate.validator:hibernate-validator:6.0.17.Final"
46- // compile "org.hibernate.validator:hibernate-validator:6.1.0.Alpha5"
47- compile " javax.el:javax.el-api:3.0.0"
48- compile " org.glassfish:javax.el:3.0.0"
49-
50- testCompile ' org.slf4j:slf4j-simple:1.7.25'
51- testCompile ' org.spockframework:spock-core:1.1-groovy-2.4'
52- testCompile ' org.codehaus.groovy:groovy-all:2.5.7'
44+ compile " jakarta.validation:jakarta.validation-api:2.0.2"
45+ compile " org.hibernate.validator:hibernate-validator:6.0.19.Final"
46+ compile " jakarta.el:jakarta.el-api:3.0.3"
47+ compile " org.glassfish:jakarta.el:3.0.3"
48+
49+ testCompile ' org.slf4j:slf4j-simple:1.7.30'
50+ testCompile ' org.spockframework:spock-core:1.3-groovy-2.5'
51+ testCompile ' org.codehaus.groovy:groovy-all:2.5.11'
5352}
5453
5554task sourcesJar (type : Jar , dependsOn : classes) {
56- classifier = ' sources'
55+ archiveClassifier . set( " sources" )
5756 from sourceSets. main. allSource
5857}
5958
6059task javadocJar (type : Jar , dependsOn : javadoc) {
61- classifier = ' javadoc'
60+ archiveClassifier . set( " javadoc" )
6261 from javadoc. destinationDir
6362}
6463
0 commit comments