1
0
mirror of synced 2026-07-17 00:28:18 +00:00

Compare commits

...

17 Commits

Author SHA1 Message Date
Steve Riesenberg 957111c29c Release 5.4.9 2021-10-18 17:35:38 -05:00
Steve Riesenberg 03c2c49d66 Lock Dependencies for Release 2021-10-18 17:34:42 -05:00
Steve Riesenberg 397781e57c Update to Spring Boot 2.4.11
Closes gh-10418
2021-10-18 17:33:19 -05:00
Steve Riesenberg c83bd075a2 Revert "Lock Dependencies for Release"
This reverts commit bedb569f0d.
2021-10-18 16:49:15 -05:00
Steve Riesenberg bedb569f0d Lock Dependencies for Release 2021-10-18 15:38:17 -05:00
Josh Cummings ba468c7e6e Restructure SwitchUserFilter Logs
Issue gh-6311
2021-10-18 15:38:16 -05:00
Emil Sierżęga 37ccf3c18c Fixed link in .editorconfig 2021-10-13 15:38:01 -06:00
Marcus Da Coregio f45b990b4b Allow SAML 2.0 loginProcessingURL without registrationId
Closes gh-10176
2021-10-05 13:30:20 -03:00
Josh Cummings 4df9b4547f Fix OAuth2 Error Code
Closes gh-10319
2021-09-28 14:56:25 -06:00
heowc 02060015a5 Fix typo
Closes gh-10276
2021-09-22 16:36:38 -06:00
Rob Winch 278bda1c2d Remove finally block for junit
Allow this to be gathered by Gradle enterprise since if build is up to
date there will be no tests ran which causes failure. Additionally,
Gradle Enterprise displays the tests better than Jenkins.
2021-09-22 16:25:20 -05:00
Rob Winch 8104a17049 Specify Jenkins user in Jenkinsfile 2021-09-22 16:06:49 -05:00
Anthony Lofton 7614346a6f Updated test.adoc SecurityMockServerConfigurers method references
Updated all references to SecurityMockServerConfigurers to refer to
correct methods.
Added documentation for mockJwt to include the
SecurityMockServerConfigurers class.

Issue gh-10254
2021-09-14 16:19:49 -03:00
Derek Van Blerkom 9a1f04c08f Fix return type to allow further security config
Issue gh-10245
2021-09-13 15:41:25 -03:00
Fabio Guenci 8c1201ae49 Preserve Null Claim Values
Prior to this commit ClaimTypeConverter returned the claims with the
original value for all the claims with a null converted value.
The changes allows ClaimTypeConverter to overwrite and return claims
with converted value of null.

Closes gh-10135
2021-08-16 15:07:23 -06:00
Joe Grandja fefe985242 Next Development Version 2021-08-16 11:57:20 -04:00
Joe Grandja ec6b2203ca Revert "Lock Dependencies for Release"
This reverts commit 067bdd0dd9.
2021-08-16 11:55:39 -04:00
2431 changed files with 24166 additions and 24071 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# EditorConfig for Spring Security
# see https://github.com/spring-projects/spring-security/blob/master/CONTRIBUTING.md#mind-the-whitespace
# see https://github.com/spring-projects/spring-security/blob/master/CONTRIBUTING.adoc#mind-the-whitespace
root = true
Vendored
+11 -12
View File
@@ -19,6 +19,7 @@ def OSSRH_S01_CREDENTIALS = usernamePassword(credentialsId: 'oss-s01-token', pas
def ARTIFACTORY_CREDENTIALS = usernamePassword(credentialsId: '02bd1690-b54f-4c9f-819d-a77cb7a9822c', usernameVariable: 'ARTIFACTORY_USERNAME', passwordVariable: 'ARTIFACTORY_PASSWORD')
def JENKINS_PRIVATE_SSH_KEY = file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')
def SONAR_LOGIN_CREDENTIALS = string(credentialsId: 'spring-sonar.login', variable: 'SONAR_LOGIN')
def JENKINS_USER='-Duser.name="spring-builds+jenkins"'
def jdkEnv(String jdk = 'jdk8') {
def jdkTool = tool(jdk)
@@ -39,14 +40,12 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew check -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
sh "./gradlew check $JENKINS_USER -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
}
}
} catch(Exception e) {
currentBuild.result = 'FAILED: check'
throw e
} finally {
junit '**/build/test-results/*/*.xml'
}
}
}
@@ -66,9 +65,9 @@ try {
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
if ("master" == env.BRANCH_NAME) {
sh "./gradlew sonarqube -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PexcludeProjects='**/samples/**' -Dsonar.host.url=$SPRING_SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN --stacktrace"
sh "./gradlew $JENKINS_USER sonarqube -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PexcludeProjects='**/samples/**' -Dsonar.host.url=$SPRING_SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN --stacktrace"
} else {
sh "./gradlew sonarqube -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PexcludeProjects='**/samples/**' -Dsonar.projectKey='spring-security-${env.BRANCH_NAME}' -Dsonar.projectName='spring-security-${env.BRANCH_NAME}' -Dsonar.host.url=$SPRING_SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN --stacktrace"
sh "./gradlew $JENKINS_USER sonarqube -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PexcludeProjects='**/samples/**' -Dsonar.projectKey='spring-security-${env.BRANCH_NAME}' -Dsonar.projectName='spring-security-${env.BRANCH_NAME}' -Dsonar.host.url=$SPRING_SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN --stacktrace"
}
}
} catch(Exception e) {
@@ -92,7 +91,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --refresh-dependencies -PforceMavenRepositories=snapshot -PspringVersion='5.2.+' -PreactorVersion='Dysprosium-BUILD-SNAPSHOT' -PspringDataVersion='Neumann-BUILD-SNAPSHOT' -PrsocketVersion='1.0.+' -PspringBootVersion='2.3.+' -PlocksDisabled --stacktrace"
sh "./gradlew $JENKINS_USER test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --refresh-dependencies -PforceMavenRepositories=snapshot -PspringVersion='5.2.+' -PreactorVersion='Dysprosium-BUILD-SNAPSHOT' -PspringDataVersion='Neumann-BUILD-SNAPSHOT' -PrsocketVersion='1.0.+' -PspringBootVersion='2.3.+' -PlocksDisabled --stacktrace"
}
}
} catch(Exception e) {
@@ -116,7 +115,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
sh "./gradlew $JENKINS_USER test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
}
}
} catch(Exception e) {
@@ -139,7 +138,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
sh "./gradlew $JENKINS_USER test -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace"
}
}
} catch(Exception e) {
@@ -166,8 +165,8 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew deployArtifacts -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password='$SIGNING_PASSWORD' -PossrhTokenUsername=$OSSRH_S01_TOKEN_USERNAME -PossrhTokenPassword=$OSSRH_S01_TOKEN_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace --no-parallel"
sh "./gradlew finalizeDeployArtifacts -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password='$SIGNING_PASSWORD' -PossrhTokenUsername=$OSSRH_S01_TOKEN_USERNAME -PossrhTokenPassword=$OSSRH_S01_TOKEN_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace --no-parallel"
sh "./gradlew $JENKINS_USER deployArtifacts -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password='$SIGNING_PASSWORD' -PossrhTokenUsername=$OSSRH_S01_TOKEN_USERNAME -PossrhTokenPassword=$OSSRH_S01_TOKEN_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace --no-parallel"
sh "./gradlew $JENKINS_USER finalizeDeployArtifacts -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password='$SIGNING_PASSWORD' -PossrhTokenUsername=$OSSRH_S01_TOKEN_USERNAME -PossrhTokenPassword=$OSSRH_S01_TOKEN_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace --no-parallel"
}
}
}
@@ -188,7 +187,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew deployDocs -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --stacktrace"
sh "./gradlew $JENKINS_USER deployDocs -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --stacktrace"
}
}
}
@@ -209,7 +208,7 @@ try {
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
sh "./gradlew deploySchema -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --stacktrace"
sh "./gradlew $JENKINS_USER deploySchema -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --stacktrace"
}
}
}
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -2,8 +2,8 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
antlr:antlr:2.7.7
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.google.code.findbugs:jsr305:3.0.2
com.google.errorprone:error_prone_annotations:2.3.4
com.google.guava:failureaccess:1.0.1
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.32
commons-beanutils:commons-beanutils:1.9.4
commons-collections:commons-collections:3.2.2
info.picocli:picocli:4.2.0
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
io.spring.javaformat:spring-javaformat-checkstyle:0.0.25
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
io.spring.nohttp:nohttp:0.0.3.RELEASE
@@ -23,4 +23,4 @@ org.antlr:antlr4-runtime:4.8-1
org.checkerframework:checker-qual:2.11.1
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+10 -10
View File
@@ -1,15 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,15 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+10 -10
View File
@@ -1,15 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jacoco:org.jacoco.ant:0.8.2
org.jacoco:org.jacoco.core:0.8.2
@@ -12,4 +12,4 @@ org.ow2.asm:asm-commons:6.2.1
org.ow2.asm:asm-tree:6.2.1
org.ow2.asm:asm:6.2.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+2 -2
View File
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,9 +1,9 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
net.sf.ehcache:ehcache:2.10.9.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+10 -10
View File
@@ -1,15 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,15 +1,15 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -11,14 +11,14 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context-support:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context-support:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -11,14 +11,14 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context-support:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context-support:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,14 +12,14 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context-support:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context-support:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,14 +12,14 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context-support:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context-support:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
+12 -12
View File
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,14 +12,14 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context-support:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context-support:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjtools:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -2,8 +2,8 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
antlr:antlr:2.7.7
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.google.code.findbugs:jsr305:3.0.2
com.google.errorprone:error_prone_annotations:2.3.4
com.google.guava:failureaccess:1.0.1
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.32
commons-beanutils:commons-beanutils:1.9.4
commons-collections:commons-collections:3.2.2
info.picocli:picocli:4.2.0
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
io.spring.javaformat:spring-javaformat-checkstyle:0.0.25
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
io.spring.nohttp:nohttp:0.0.3.RELEASE
@@ -23,4 +23,4 @@ org.antlr:antlr4-runtime:4.8-1
org.checkerframework:checker-qual:2.11.1
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,14 +1,14 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjrt:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,14 +1,14 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjrt:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,14 +1,14 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjrt:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jacoco:org.jacoco.ant:0.8.2
org.jacoco:org.jacoco.core:0.8.2
@@ -12,4 +12,4 @@ org.ow2.asm:asm-commons:6.2.1
org.ow2.asm:asm-tree:6.2.1
org.ow2.asm:asm:6.2.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,14 +1,14 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjrt:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,14 +1,14 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.aspectj:aspectjrt:1.9.6
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,11 +12,11 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,11 +12,11 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,11 +12,11 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,11 +12,11 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -12,11 +12,11 @@ org.jetbrains.kotlin:kotlin-bom:1.4.30
org.mockito:mockito-core:3.5.15
org.objenesis:objenesis:3.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -2,8 +2,8 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
antlr:antlr:2.7.7
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.google.code.findbugs:jsr305:3.0.2
com.google.errorprone:error_prone_annotations:2.3.4
com.google.guava:failureaccess:1.0.1
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.32
commons-beanutils:commons-beanutils:1.9.4
commons-collections:commons-collections:3.2.2
info.picocli:picocli:4.2.0
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
io.spring.javaformat:spring-javaformat-checkstyle:0.0.25
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
io.spring.nohttp:nohttp:0.0.3.RELEASE
@@ -23,4 +23,4 @@ org.antlr:antlr4-runtime:4.8-1
org.checkerframework:checker-qual:2.11.1
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+9 -9
View File
@@ -5,18 +5,18 @@ com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.bouncycastle:bcpkix-jdk15on:1.66
org.bouncycastle:bcprov-jdk15on:1.66
org.jasig.cas.client:cas-client-core:3.6.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -5,18 +5,18 @@ com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.bouncycastle:bcpkix-jdk15on:1.66
org.bouncycastle:bcprov-jdk15on:1.66
org.jasig.cas.client:cas-client-core:3.6.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+9 -9
View File
@@ -5,18 +5,18 @@ com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.bouncycastle:bcpkix-jdk15on:1.66
org.bouncycastle:bcprov-jdk15on:1.66
org.jasig.cas.client:cas-client-core:3.6.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jacoco:org.jacoco.ant:0.8.2
org.jacoco:org.jacoco.core:0.8.2
@@ -12,4 +12,4 @@ org.ow2.asm:asm-commons:6.2.1
org.ow2.asm:asm-tree:6.2.1
org.ow2.asm:asm:6.2.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+2 -2
View File
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -4,9 +4,9 @@
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
net.sf.ehcache:ehcache:2.10.9.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
javax.servlet:javax.servlet-api:4.0.1
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
+9 -9
View File
@@ -5,18 +5,18 @@ com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.bouncycastle:bcpkix-jdk15on:1.66
org.bouncycastle:bcprov-jdk15on:1.66
org.jasig.cas.client:cas-client-core:3.6.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -5,18 +5,18 @@ com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.bouncycastle:bcpkix-jdk15on:1.66
org.bouncycastle:bcprov-jdk15on:1.66
org.jasig.cas.client:cas-client-core:3.6.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -6,7 +6,7 @@ com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -21,12 +21,12 @@ org.objenesis:objenesis:3.1
org.skyscreamer:jsonassert:1.5.0
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -6,7 +6,7 @@ com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -21,12 +21,12 @@ org.objenesis:objenesis:3.1
org.skyscreamer:jsonassert:1.5.0
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -6,7 +6,7 @@ com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -21,12 +21,12 @@ org.objenesis:objenesis:3.1
org.skyscreamer:jsonassert:1.5.0
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -6,7 +6,7 @@ com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -21,12 +21,12 @@ org.objenesis:objenesis:3.1
org.skyscreamer:jsonassert:1.5.0
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
+10 -10
View File
@@ -6,7 +6,7 @@ com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
commons-codec:commons-codec:1.15
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
junit:junit:4.12
net.bytebuddy:byte-buddy-agent:1.10.15
net.bytebuddy:byte-buddy:1.10.15
@@ -21,12 +21,12 @@ org.objenesis:objenesis:3.1
org.skyscreamer:jsonassert:1.5.0
org.slf4j:slf4j-api:1.7.32
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.30
@@ -9,10 +9,10 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.30
org.jetbrains.kotlin:kotlin-stdlib:1.4.30
org.jetbrains:annotations:13.0
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -2,8 +2,8 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
antlr:antlr:2.7.7
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.google.code.findbugs:jsr305:3.0.2
com.google.errorprone:error_prone_annotations:2.3.4
com.google.guava:failureaccess:1.0.1
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.32
commons-beanutils:commons-beanutils:1.9.4
commons-collections:commons-collections:3.2.2
info.picocli:picocli:4.2.0
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
io.spring.javaformat:spring-javaformat-checkstyle:0.0.25
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
io.spring.nohttp:nohttp:0.0.3.RELEASE
@@ -23,4 +23,4 @@ org.antlr:antlr4-runtime:4.8-1
org.checkerframework:checker-qual:2.11.1
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,13 +1,13 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.30
@@ -9,10 +9,10 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.30
org.jetbrains.kotlin:kotlin-stdlib:1.4.30
org.jetbrains:annotations:13.0
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.30
@@ -9,10 +9,10 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.30
org.jetbrains.kotlin:kotlin-stdlib:1.4.30
org.jetbrains:annotations:13.0
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-common:1.4.30
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.30
@@ -9,10 +9,10 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.30
org.jetbrains.kotlin:kotlin-stdlib:1.4.30
org.jetbrains:annotations:13.0
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -4,8 +4,8 @@
antlr:antlr:2.7.7
asm:asm:3.1
bouncycastle:bcprov-jdk15:140
ch.qos.logback:logback-classic:1.2.5
ch.qos.logback:logback-core:1.2.5
ch.qos.logback:logback-classic:1.2.6
ch.qos.logback:logback-core:1.2.6
com.fasterxml.jackson.core:jackson-annotations:2.11.4
com.fasterxml.jackson.core:jackson-core:2.11.4
com.fasterxml.jackson.core:jackson-databind:2.11.4
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
com.google.j2objc:j2objc-annotations:1.1
com.nimbusds:content-type:2.1
com.nimbusds:lang-tag:1.4.4
com.nimbusds:nimbus-jose-jwt:8.22.1
com.nimbusds:nimbus-jose-jwt:8.23
com.nimbusds:oauth2-oidc-sdk:8.36.2
com.squareup.okhttp3:mockwebserver:3.14.9
com.squareup.okhttp3:okhttp:3.14.9
@@ -34,23 +34,23 @@ commons-lang:commons-lang:2.4
commons-logging:commons-logging:1.2
commons-net:commons-net:3.6
io.dropwizard.metrics:metrics-core:3.1.5
io.netty:netty-buffer:4.1.66.Final
io.netty:netty-codec-http2:4.1.66.Final
io.netty:netty-codec-http:4.1.66.Final
io.netty:netty-codec-socks:4.1.66.Final
io.netty:netty-codec:4.1.66.Final
io.netty:netty-common:4.1.66.Final
io.netty:netty-handler-proxy:4.1.66.Final
io.netty:netty-handler:4.1.66.Final
io.netty:netty-resolver:4.1.66.Final
io.netty:netty-transport-native-epoll:4.1.66.Final
io.netty:netty-transport-native-unix-common:4.1.66.Final
io.netty:netty-transport:4.1.66.Final
io.projectreactor.netty:reactor-netty:0.9.22.RELEASE
io.netty:netty-buffer:4.1.69.Final
io.netty:netty-codec-http2:4.1.69.Final
io.netty:netty-codec-http:4.1.69.Final
io.netty:netty-codec-socks:4.1.69.Final
io.netty:netty-codec:4.1.69.Final
io.netty:netty-common:4.1.69.Final
io.netty:netty-handler-proxy:4.1.69.Final
io.netty:netty-handler:4.1.69.Final
io.netty:netty-resolver:4.1.69.Final
io.netty:netty-transport-native-epoll:4.1.69.Final
io.netty:netty-transport-native-unix-common:4.1.69.Final
io.netty:netty-transport:4.1.69.Final
io.projectreactor.netty:reactor-netty:0.9.24.RELEASE
io.projectreactor.tools:blockhound:1.0.6.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-core:3.3.19.RELEASE
io.projectreactor:reactor-test:3.3.19.RELEASE
io.projectreactor:reactor-bom:Dysprosium-SR24
io.projectreactor:reactor-core:3.3.21.RELEASE
io.projectreactor:reactor-test:3.3.21.RELEASE
io.rsocket:rsocket-core:1.0.5
io.rsocket:rsocket-transport-netty:1.0.5
javax.activation:javax.activation-api:1.2.0
@@ -190,22 +190,22 @@ org.springframework.data:spring-data-commons:2.3.9.RELEASE
org.springframework.data:spring-data-jpa:2.3.9.RELEASE
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE
org.springframework:spring-aop:5.2.16.RELEASE
org.springframework:spring-beans:5.2.16.RELEASE
org.springframework:spring-context:5.2.16.RELEASE
org.springframework:spring-core:5.2.16.RELEASE
org.springframework:spring-expression:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-jcl:5.2.16.RELEASE
org.springframework:spring-jdbc:5.2.16.RELEASE
org.springframework:spring-messaging:5.2.16.RELEASE
org.springframework:spring-orm:5.2.16.RELEASE
org.springframework:spring-test:5.2.16.RELEASE
org.springframework:spring-tx:5.2.16.RELEASE
org.springframework:spring-web:5.2.16.RELEASE
org.springframework:spring-webflux:5.2.16.RELEASE
org.springframework:spring-webmvc:5.2.16.RELEASE
org.springframework:spring-websocket:5.2.16.RELEASE
org.springframework:spring-aop:5.2.18.RELEASE
org.springframework:spring-beans:5.2.18.RELEASE
org.springframework:spring-context:5.2.18.RELEASE
org.springframework:spring-core:5.2.18.RELEASE
org.springframework:spring-expression:5.2.18.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
org.springframework:spring-jcl:5.2.18.RELEASE
org.springframework:spring-jdbc:5.2.18.RELEASE
org.springframework:spring-messaging:5.2.18.RELEASE
org.springframework:spring-orm:5.2.18.RELEASE
org.springframework:spring-test:5.2.18.RELEASE
org.springframework:spring-tx:5.2.18.RELEASE
org.springframework:spring-web:5.2.18.RELEASE
org.springframework:spring-webflux:5.2.18.RELEASE
org.springframework:spring-webmvc:5.2.18.RELEASE
org.springframework:spring-websocket:5.2.18.RELEASE
org.synchronoss.cloud:nio-multipart-parser:1.1.0
org.synchronoss.cloud:nio-stream-storage:1.1.3
xalan:serializer:2.7.2
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,8 +1,8 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jetbrains.kotlin:kotlin-bom:1.4.30
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE
@@ -1,7 +1,7 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
io.projectreactor:reactor-bom:Dysprosium-SR22
io.projectreactor:reactor-bom:Dysprosium-SR24
org.jacoco:org.jacoco.agent:0.8.2
org.jacoco:org.jacoco.ant:0.8.2
org.jacoco:org.jacoco.core:0.8.2
@@ -12,4 +12,4 @@ org.ow2.asm:asm-commons:6.2.1
org.ow2.asm:asm-tree:6.2.1
org.ow2.asm:asm:6.2.1
org.springframework.data:spring-data-releasetrain:Neumann-SR9
org.springframework:spring-framework-bom:5.2.16.RELEASE
org.springframework:spring-framework-bom:5.2.18.RELEASE

Some files were not shown because too many files have changed in this diff Show More