@@ -2,9 +2,9 @@ import java.time.ZonedDateTime
22
33buildscript {
44 ext {
5- kotlinVersion = ' 1.2.71 '
6- springBootVersion = ' 2.0.5 .RELEASE'
7- junitJupiterVersion = ' 5.3 .1'
5+ kotlinVersion = ' 1.3.40 '
6+ springBootVersion = ' 2.1.7 .RELEASE'
7+ junitJupiterVersion = ' 5.5 .1'
88 }
99
1010 repositories {
@@ -19,10 +19,10 @@ buildscript {
1919}
2020
2121plugins {
22- id(" org.ajoberstar.grgit" ) version ' 3.0.0-rc.2 '
23- id(" net.researchgate.release" ) version ' 2.7.0 '
24- id(' com.google.cloud.tools.jib' ) version ' 0.9.11 '
25- id " com.github.ben-manes.versions" version ' 0.20 .0'
22+ id(" org.ajoberstar.grgit" ) version ' 3.1.1 '
23+ id(" net.researchgate.release" ) version ' 2.8.1 '
24+ id(' com.google.cloud.tools.jib' ) version ' 1.5.0 '
25+ id " com.github.ben-manes.versions" version ' 0.22 .0'
2626}
2727
2828apply plugin : " kotlin"
@@ -45,6 +45,8 @@ repositories {
4545
4646dependencies {
4747 compile(" com.graphql-java:graphql-spring-boot-starter:5.0.2" )
48+ // UI for GraphQL queries available at /graphiql
49+ // compile("com.graphql-java:graphiql-spring-boot-starter:5.0.2")
4850 compile(" com.graphql-java:graphql-java-tools:5.2.4" )
4951 compile(" com.graphql-java:graphql-java:9.4" )
5052 compile(" org.springframework.boot:spring-boot-starter-web-services:$springBootVersion " )
@@ -53,8 +55,8 @@ dependencies {
5355 compile(" org.springframework.boot:spring-boot-starter-cache:$springBootVersion " )
5456 compile(" org.springframework.boot:spring-boot-starter-security:$springBootVersion " )
5557 compile(" org.springframework.boot:spring-boot-starter-mustache:$springBootVersion " )
56- compile(" org.springframework.security:spring-security-jwt:1.0.9 .RELEASE" )
57- compile(" org.springframework.security.oauth:spring-security-oauth2:2.3.3 .RELEASE" )
58+ compile(" org.springframework.security:spring-security-jwt:1.0.10 .RELEASE" )
59+ compile(" org.springframework.security.oauth:spring-security-oauth2:2.3.6 .RELEASE" )
5860 compile(" org.springframework.boot:spring-boot-devtools:$springBootVersion " )
5961
6062
@@ -63,19 +65,19 @@ dependencies {
6365 compile(" org.springframework.data:spring-data-commons" )
6466
6567 compile(" com.github.ben-manes.caffeine:caffeine:2.+" )
66- compile(" com.fasterxml.jackson.module:jackson-module-kotlin:2.9.7 " )
67- compile(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.7 " )
68- compile(" com.googlecode.libphonenumber:libphonenumber:8.9.15 " )
69- compile(" com.google.guava:guava:26 .0-jre" )
70- compile(" net.sf.biweekly:biweekly:0.6.2 " )
68+ compile(" com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9 " )
69+ compile(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.9 " )
70+ compile(" com.googlecode.libphonenumber:libphonenumber:8.10.17 " )
71+ compile(" com.google.guava:guava:28 .0-jre" )
72+ compile(" net.sf.biweekly:biweekly:0.6.3 " )
7173
7274 /* The following are needed under java 11 */
73- runtime(" org.apache.commons:commons-lang3:3.8.1 " )
75+ runtime(" org.apache.commons:commons-lang3:3.9 " )
7476 runtime(" javax.xml.bind:jaxb-api:2.3.0" )
7577 runtime(" com.sun.xml.bind:jaxb-impl:2.3.0" )
7678 runtime(" com.sun.xml.bind:jaxb-core:2.3.0" )
77- runtime(" javax.activation:activation:1.1.1 " )
78- compile(" org.apache.httpcomponents:httpclient:4.5.4 " )
79+ runtime(" javax.activation:activation:1.1" )
80+ compile(" org.apache.httpcomponents:httpclient:4.5.9 " )
7981
8082 compile(" org.jetbrains.kotlin:kotlin-stdlib-jdk8:${ kotlinVersion} " )
8183 compile(" org.jetbrains.kotlin:kotlin-stdlib:${ kotlinVersion} " )
@@ -84,7 +86,7 @@ dependencies {
8486 testCompile(" org.springframework.boot:spring-boot-starter-test:$springBootVersion " )
8587 testCompile(" org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion} " )
8688 testRuntime(" org.junit.jupiter:junit-jupiter-engine:${ junitJupiterVersion} " )
87- testCompile(" org.mockito:mockito-core:2.23.0 " )
89+ testCompile(" org.mockito:mockito-core:2.28.2 " )
8890}
8991
9092
0 commit comments