@@ -39,7 +39,7 @@ repositories {
39
39
maven { url " https://jitpack.io" }
40
40
maven { url " https://build.shibboleth.net/nexus/content/repositories/releases/" }
41
41
maven {
42
- url ' https://build.shibboleth.net/maven/releases'
42
+ url " https://build.shibboleth.net/maven/releases"
43
43
}
44
44
}
45
45
@@ -98,7 +98,7 @@ launch4j {
98
98
99
99
spotless {
100
100
java {
101
- target project. fileTree(' src/main/java' )
101
+ target project. fileTree(" src/main/java" )
102
102
103
103
googleJavaFormat(" 1.22.0" ). aosp(). reorderImports(false )
104
104
@@ -111,7 +111,7 @@ spotless {
111
111
}
112
112
113
113
// gradleLint {
114
- // rules=[' unused-dependency' ]
114
+ // rules=[" unused-dependency" ]
115
115
// }
116
116
tasks. wrapper {
117
117
gradleVersion = " 8.7"
@@ -129,15 +129,15 @@ dependencies {
129
129
implementation(" io.github.pixee:java-security-toolkit:1.2.0" )
130
130
131
131
// implementation "org.yaml:snakeyaml:2.2"
132
- implementation ' com.github.Carleslc.Simple-YAML:Simple-Yaml:1.8.4'
132
+ implementation " com.github.Carleslc.Simple-YAML:Simple-Yaml:1.8.4"
133
133
134
134
// Exclude Tomcat and include Jetty
135
135
implementation(" org.springframework.boot:spring-boot-starter-web:$springBootVersion " )
136
136
implementation " org.springframework.boot:spring-boot-starter-jetty:$springBootVersion "
137
137
138
138
implementation " org.springframework.boot:spring-boot-starter-thymeleaf:$springBootVersion "
139
- implementation ' com.posthog.java:posthog:1.1.1'
140
- implementation ' com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20240325.1'
139
+ implementation " com.posthog.java:posthog:1.1.1"
140
+ implementation " com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20240325.1"
141
141
142
142
143
143
if (System . getenv(" DOCKER_ENABLE_SECURITY" ) != " false" ) {
@@ -147,8 +147,9 @@ dependencies {
147
147
implementation " org.springframework.boot:spring-boot-starter-oauth2-client:$springBootVersion "
148
148
149
149
implementation " org.springframework.session:spring-session-core:$springBootVersion "
150
-
151
- implementation ' com.unboundid.product.scim2:scim2-sdk-client:2.3.5'
150
+ implementation " org.springframework:spring-jdbc"
151
+
152
+ implementation " com.unboundid.product.scim2:scim2-sdk-client:2.3.5"
152
153
// Don't upgrade h2database
153
154
runtimeOnly " org.postgresql:postgresql:42.7.4"
154
155
constraints {
@@ -157,8 +158,8 @@ dependencies {
157
158
implementation " org.opensaml:opensaml-saml-impl:$openSamlVersion "
158
159
}
159
160
implementation " org.springframework.security:spring-security-saml2-service-provider:$springSecuritySamlVersion "
160
- // implementation ' org.springframework.security:spring-security-core:$springSecuritySamlVersion'
161
- implementation ' com.coveo:saml-client:5.0.0'
161
+ // implementation " org.springframework.security:spring-security-core:$springSecuritySamlVersion"
162
+ implementation " com.coveo:saml-client:5.0.0"
162
163
163
164
164
165
}
@@ -207,13 +208,13 @@ dependencies {
207
208
}
208
209
209
210
// https://mvnrepository.com/artifact/technology.tabula/tabula
210
- implementation (' technology.tabula:tabula:1.0.5' ) {
211
+ implementation (" technology.tabula:tabula:1.0.5" ) {
211
212
exclude group : " org.slf4j" , module : " slf4j-simple"
212
213
exclude group : " org.bouncycastle" , module : " bcprov-jdk15on"
213
214
exclude group : " com.google.code.gson" , module : " gson"
214
215
}
215
216
216
- implementation ' org.apache.pdfbox:jbig2-imageio:3.0.4'
217
+ implementation " org.apache.pdfbox:jbig2-imageio:3.0.4"
217
218
218
219
implementation " org.bouncycastle:bcprov-jdk18on:$bouncycastleVersion "
219
220
implementation " org.bouncycastle:bcpkix-jdk18on:$bouncycastleVersion "
@@ -231,7 +232,7 @@ dependencies {
231
232
compileOnly " org.projectlombok:lombok:$lombokVersion "
232
233
annotationProcessor " org.projectlombok:lombok:$lombokVersion "
233
234
234
- testRuntimeOnly ' org.mockito:mockito-inline:5.2.0'
235
+ testRuntimeOnly " org.mockito:mockito-inline:5.2.0"
235
236
}
236
237
237
238
tasks. withType(JavaCompile ). configureEach {
0 commit comments