@@ -38,13 +38,9 @@ configurations {
3838}
3939
4040ext {
41- set(' javersVersion' , " 6.8.0" )
4241 set(' jenaVersion' , " 5.4.0" )
43- set(' springBootVersion' , " 3.4.5" )
4442 set(' springDocVersion' , " 2.5.0" )
45- set(' keycloakVersion' , " 19.0.0" )
46- set(' junitPlatformVersion' , " 1.11.4" )
47- set(' junitJupiterVersion' , " 5.11.4" )
43+ // set('keycloakVersion', "19.0.0")
4844
4945 // directory for generated code snippets during tests
5046 snippetsDir = file(" build/generated-snippets" )
@@ -89,56 +85,47 @@ dependencies {
8985 implementation " org.springframework.boot:spring-boot-starter-mail"
9086 // implementation "org.springframework.boot:spring-boot-starter-actuator"
9187
92- // implementation "org.springframework.security:spring-security-web:5.7.5"
93- // implementation "org.springframework.security:spring-security-config:5.7.5"
94- implementation " org.thymeleaf:thymeleaf-spring6"
88+ // implementation "org.springframework.security:spring-security-web"
89+ // implementation "org.springframework.security:spring-security-config"
9590
9691
9792 // cloud support
98- // implementation "org.springframework.cloud:spring-cloud-starter-config:3.1.5 "
99- // implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:3.1.4 "
100- // implementation "org.springframework.cloud:spring-cloud-gateway-mvc:3.1.4 "
101- // implementation 'de.codecentric:spring-boot-admin-starter-client:2.7.10 '
93+ // implementation "org.springframework.cloud:spring-cloud-starter-config"
94+ // implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client"
95+ // implementation "org.springframework.cloud:spring-cloud-gateway-mvc"
96+ // implementation 'de.codecentric:spring-boot-admin-starter-client'
10297
10398 // springdoc
10499 implementation " org.springdoc:springdoc-openapi-starter-webmvc-ui:${ springDocVersion} "
105100
106101 // Keycloak
107102 // implementation "org.keycloak:keycloak-spring-boot-starter:${keycloakVersion}"
108- implementation ' com.nimbusds:nimbus-jose-jwt:10.3'
109- implementation " io.jsonwebtoken:jjwt-api:0.11.5"
110- implementation " io.jsonwebtoken:jjwt-impl:0.11.5"
111- implementation " io.jsonwebtoken:jjwt-jackson:0.11.5"
103+ // implementation 'com.nimbusds:nimbus-jose-jwt:10.3'
104+ // implementation "io.jsonwebtoken:jjwt-api:0.11.5"
105+ // implementation "io.jsonwebtoken:jjwt-impl:0.11.5"
106+ // implementation "io.jsonwebtoken:jjwt-jackson:0.11.5"
112107
113108 // Jena
114109 implementation " org.apache.jena:apache-jena-libs:${ jenaVersion} "
115110 implementation " org.apache.jena:jena-fuseki:${ jenaVersion} "
116111 implementation " org.apache.jena:jena-fuseki-server:${ jenaVersion} "
117-
118112 implementation " org.apache.jena:jena-commonsrdf:${ jenaVersion} "
119- implementation " org.apache.thrift:libthrift:0.18.1"
120113
121114 implementation " org.apache.commons:commons-rdf-jsonld-java:0.5.0"
122115 implementation " com.github.java-json-tools:json-schema-validator:2.2.14"
123116
124117 implementation " org.apache.commons:commons-collections4:4.1"
125118
126119 // driver for postgres
127- implementation ' org.postgresql:postgresql:42.7.2'
120+ runtimeOnly ' org.postgresql:postgresql:42.7.2'
128121 // driver for h2
129- implementation ' com.h2database:h2:2.3.232'
122+ runtimeOnly ' com.h2database:h2:2.3.232'
130123
131- testImplementation " org.springframework.restdocs:spring-restdocs-mockmvc:3.0.3"
132124 testImplementation " org.springframework.boot:spring-boot-starter-test"
133125 testImplementation " org.springframework:spring-test"
134126 // testImplementation "org.springframework.security:spring-security-test"
135127
136- testImplementation " org.junit.platform:junit-platform-launcher:${ junitPlatformVersion} "
137- testImplementation " org.junit.platform:junit-platform-engine:${ junitPlatformVersion} "
138- testImplementation " org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion} "
139- testImplementation " org.junit.jupiter:junit-jupiter-engine:${ junitJupiterVersion} "
140128 testImplementation " io.rest-assured:rest-assured"
141- testImplementation " io.rest-assured:spring-mock-mvc"
142129 testImplementation " io.rest-assured:rest-assured"
143130 testImplementation " io.specto:hoverfly-java-junit5:0.20.2"
144131
0 commit comments