Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b3815dfc20 | |||
| fa5f789beb | |||
| 87cc4d4519 | |||
| 10946e8153 | |||
| 3cb98ebed0 | |||
| e7acd1219d | |||
| 84b560919c | |||
| c23b0da607 | |||
| 0f7360e8fa | |||
| d722ac7757 | |||
| 2985d805b0 | |||
| e974c93f72 | |||
| 7aeda7c8d8 | |||
| 02e13dc93e | |||
| 5315b2eeca | |||
| e6d6b39767 | |||
| b08075a721 | |||
| 0fc80a6a65 | |||
| 7d31837af3 | |||
| 17276ad787 | |||
| 7c2010f507 | |||
| 2975923a1d | |||
| a153012056 | |||
| a8fe846e7f | |||
| 02a9ee54a2 | |||
| 0f76a16ae5 | |||
| 82ba28ac74 | |||
| 78f0f7bd33 | |||
| ad4ed45cd7 | |||
| 0f9de738df | |||
| 3ba441ef50 | |||
| 9ab21f88cd | |||
| 93c37e6b15 | |||
| 2dcfda7fac | |||
| 8525ae0410 |
Vendored
+104
-65
@@ -8,6 +8,23 @@ properties(projectProperties)
|
||||
def SUCCESS = hudson.model.Result.SUCCESS.toString()
|
||||
currentBuild.result = SUCCESS
|
||||
|
||||
def GRADLE_ENTERPRISE_CACHE_USER = usernamePassword(credentialsId: 'gradle_enterprise_cache_user',
|
||||
passwordVariable: 'GRADLE_ENTERPRISE_CACHE_PASSWORD',
|
||||
usernameVariable: 'GRADLE_ENTERPRISE_CACHE_USERNAME')
|
||||
def GRADLE_ENTERPRISE_SECRET_ACCESS_KEY = string(credentialsId: 'gradle_enterprise_secret_access_key',
|
||||
variable: 'GRADLE_ENTERPRISE_ACCESS_KEY')
|
||||
def SPRING_SIGNING_SECRING = file(credentialsId: 'spring-signing-secring.gpg', variable: 'SIGNING_KEYRING_FILE')
|
||||
def SPRING_GPG_PASSPHRASE = string(credentialsId: 'spring-gpg-passphrase', variable: 'SIGNING_PASSWORD')
|
||||
def OSSRH_CREDENTIALS = usernamePassword(credentialsId: 'oss-token', passwordVariable: 'OSSRH_PASSWORD', usernameVariable: 'OSSRH_USERNAME')
|
||||
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 jdkEnv(String jdk = 'jdk8') {
|
||||
def jdkTool = tool(jdk)
|
||||
return "JAVA_HOME=${ jdkTool }"
|
||||
}
|
||||
|
||||
try {
|
||||
parallel check: {
|
||||
stage('Check') {
|
||||
@@ -15,8 +32,15 @@ try {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
sh "./gradlew clean check --refresh-dependencies --no-daemon --stacktrace"
|
||||
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY,
|
||||
ARTIFACTORY_CREDENTIALS]) {
|
||||
withEnv([jdkEnv(),
|
||||
"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"
|
||||
}
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: check'
|
||||
@@ -32,13 +56,19 @@ try {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
withCredentials([string(credentialsId: 'spring-sonar.login', variable: 'SONAR_LOGIN')]) {
|
||||
withCredentials([SONAR_LOGIN_CREDENTIALS,
|
||||
GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY,
|
||||
ARTIFACTORY_CREDENTIALS]) {
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
withEnv([jdkEnv(),
|
||||
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
|
||||
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
|
||||
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
|
||||
if ("master" == env.BRANCH_NAME) {
|
||||
sh "./gradlew sonarqube -PexcludeProjects='**/samples/**' -Dsonar.host.url=$SPRING_SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN --refresh-dependencies --no-daemon --stacktrace"
|
||||
sh "./gradlew 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 -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 --refresh-dependencies --no-daemon --stacktrace"
|
||||
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"
|
||||
}
|
||||
}
|
||||
} catch(Exception e) {
|
||||
@@ -55,8 +85,15 @@ try {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
sh "./gradlew clean test -PforceMavenRepositories=snapshot -PspringVersion='5.2.+' -PreactorVersion=Dysprosium-BUILD-SNAPSHOT -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PlocksDisabled --refresh-dependencies --no-daemon --stacktrace"
|
||||
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY,
|
||||
ARTIFACTORY_CREDENTIALS]) {
|
||||
withEnv([jdkEnv(),
|
||||
"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 -PforceMavenRepositories=snapshot -PspringVersion='5.2.+' -PreactorVersion=Dysprosium-BUILD-SNAPSHOT -PspringDataVersion=Lovelace-BUILD-SNAPSHOT -PlocksDisabled --refresh-dependencies --no-daemon --stacktrace"
|
||||
}
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: snapshots'
|
||||
@@ -65,46 +102,22 @@ try {
|
||||
}
|
||||
}
|
||||
},
|
||||
jdk9: {
|
||||
stage('JDK 9') {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk9' }"]) {
|
||||
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: jdk9'
|
||||
throw e
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
jdk10: {
|
||||
stage('JDK 10') {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk10' }"]) {
|
||||
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: jdk10'
|
||||
throw e
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
jdk11: {
|
||||
stage('JDK 11') {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk11' }"]) {
|
||||
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
|
||||
|
||||
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY,
|
||||
ARTIFACTORY_CREDENTIALS]) {
|
||||
withEnv([jdkEnv("jdk11"),
|
||||
"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"
|
||||
}
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: jdk11'
|
||||
@@ -119,8 +132,15 @@ try {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
try {
|
||||
withEnv(["JAVA_HOME=${ tool 'openjdk12' }"]) {
|
||||
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
|
||||
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY,
|
||||
ARTIFACTORY_CREDENTIALS]) {
|
||||
withEnv([jdkEnv("openjdk12"),
|
||||
"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"
|
||||
}
|
||||
}
|
||||
} catch(Exception e) {
|
||||
currentBuild.result = 'FAILED: jdk12'
|
||||
@@ -136,15 +156,18 @@ try {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
withCredentials([file(credentialsId: 'spring-signing-secring.gpg', variable: 'SIGNING_KEYRING_FILE')]) {
|
||||
withCredentials([string(credentialsId: 'spring-gpg-passphrase', variable: 'SIGNING_PASSWORD')]) {
|
||||
withCredentials([usernamePassword(credentialsId: 'oss-token', passwordVariable: 'OSSRH_PASSWORD', usernameVariable: 'OSSRH_USERNAME')]) {
|
||||
withCredentials([usernamePassword(credentialsId: '02bd1690-b54f-4c9f-819d-a77cb7a9822c', usernameVariable: 'ARTIFACTORY_USERNAME', passwordVariable: 'ARTIFACTORY_PASSWORD')]) {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
sh "./gradlew deployArtifacts finalizeDeployArtifacts -Psigning.secretKeyRingFile=$SIGNING_KEYRING_FILE -Psigning.keyId=$SPRING_SIGNING_KEYID -Psigning.password='$SIGNING_PASSWORD' -PossrhUsername=$OSSRH_USERNAME -PossrhPassword=$OSSRH_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --refresh-dependencies --no-daemon --stacktrace"
|
||||
}
|
||||
}
|
||||
}
|
||||
withCredentials([SPRING_SIGNING_SECRING,
|
||||
SPRING_GPG_PASSPHRASE,
|
||||
OSSRH_CREDENTIALS,
|
||||
ARTIFACTORY_CREDENTIALS,
|
||||
GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY]) {
|
||||
withEnv([jdkEnv(),
|
||||
"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' -PossrhUsername=$OSSRH_USERNAME -PossrhPassword=$OSSRH_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' -PossrhUsername=$OSSRH_USERNAME -PossrhPassword=$OSSRH_PASSWORD -PartifactoryUsername=$ARTIFACTORY_USERNAME -PartifactoryPassword=$ARTIFACTORY_PASSWORD --stacktrace --no-parallel"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -155,9 +178,17 @@ try {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
sh "./gradlew deployDocs -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace"
|
||||
withCredentials([JENKINS_PRIVATE_SSH_KEY,
|
||||
SPRING_GPG_PASSPHRASE,
|
||||
OSSRH_CREDENTIALS,
|
||||
ARTIFACTORY_CREDENTIALS,
|
||||
GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY]) {
|
||||
withEnv([jdkEnv(),
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -168,9 +199,17 @@ try {
|
||||
node {
|
||||
checkout scm
|
||||
sh "git clean -dfx"
|
||||
withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) {
|
||||
withEnv(["JAVA_HOME=${ tool 'jdk8' }"]) {
|
||||
sh "./gradlew deploySchema -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace"
|
||||
withCredentials([JENKINS_PRIVATE_SSH_KEY,
|
||||
SPRING_GPG_PASSPHRASE,
|
||||
OSSRH_CREDENTIALS,
|
||||
ARTIFACTORY_CREDENTIALS,
|
||||
GRADLE_ENTERPRISE_CACHE_USER,
|
||||
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY]) {
|
||||
withEnv([jdkEnv(),
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -194,12 +233,12 @@ try {
|
||||
def subject = "${buildStatus}: Build ${env.JOB_NAME} ${env.BUILD_NUMBER} status is now ${buildStatus}"
|
||||
def details = """The build status changed to ${buildStatus}. For details see ${env.BUILD_URL}"""
|
||||
|
||||
emailext (
|
||||
subject: subject,
|
||||
body: details,
|
||||
recipientProviders: RECIPIENTS,
|
||||
to: "$SPRING_SECURITY_TEAM_EMAILS"
|
||||
)
|
||||
emailext (
|
||||
subject: subject,
|
||||
body: details,
|
||||
recipientProviders: RECIPIENTS,
|
||||
to: "$SPRING_SECURITY_TEAM_EMAILS"
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.22
|
||||
commons-beanutils:commons-beanutils:1.9.3
|
||||
commons-collections:commons-collections:3.2.2
|
||||
info.picocli:picocli:3.9.6
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.spring.javaformat:spring-javaformat-checkstyle:0.0.15
|
||||
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
|
||||
io.spring.nohttp:nohttp:0.0.3.RELEASE
|
||||
@@ -23,5 +23,5 @@ org.antlr:antlr4-runtime:4.7.2
|
||||
org.checkerframework:checker-qual:2.5.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jacoco:org.jacoco.ant:0.8.2
|
||||
org.jacoco:org.jacoco.core:0.8.2
|
||||
@@ -11,5 +11,5 @@ org.ow2.asm:asm-analysis:6.2.1
|
||||
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:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
net.sf.ehcache:ehcache:2.10.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -10,15 +10,15 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context-support:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context-support:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -10,15 +10,15 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context-support:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context-support:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,15 +11,15 @@ org.hsqldb:hsqldb:2.5.1
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context-support:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context-support:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,15 +11,15 @@ org.hsqldb:hsqldb:2.5.1
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context-support:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context-support:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,15 +11,15 @@ org.hsqldb:hsqldb:2.5.1
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context-support:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context-support:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjtools:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.22
|
||||
commons-beanutils:commons-beanutils:1.9.3
|
||||
commons-collections:commons-collections:3.2.2
|
||||
info.picocli:picocli:3.9.6
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.spring.javaformat:spring-javaformat-checkstyle:0.0.15
|
||||
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
|
||||
io.spring.nohttp:nohttp:0.0.3.RELEASE
|
||||
@@ -23,5 +23,5 @@ org.antlr:antlr4-runtime:4.7.2
|
||||
org.checkerframework:checker-qual:2.5.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jacoco:org.jacoco.ant:0.8.2
|
||||
org.jacoco:org.jacoco.core:0.8.2
|
||||
@@ -11,5 +11,5 @@ org.ow2.asm:asm-analysis:6.2.1
|
||||
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:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,12 +11,12 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,12 +11,12 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,12 +11,12 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,12 +11,12 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
@@ -11,12 +11,12 @@ org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
|
||||
+10
-2
@@ -1,13 +1,21 @@
|
||||
buildscript {
|
||||
dependencies {
|
||||
classpath 'io.spring.gradle:spring-build-conventions:0.0.34.RELEASE'
|
||||
classpath 'io.spring.gradle:spring-build-conventions:0.0.37'
|
||||
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
||||
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
|
||||
classpath "io.freefair.gradle:aspectj-plugin:4.1.6"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
||||
}
|
||||
repositories {
|
||||
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
||||
maven {
|
||||
url = 'https://repo.spring.io/plugins-snapshot'
|
||||
if (project.hasProperty('artifactoryUsername')) {
|
||||
credentials {
|
||||
username "$artifactoryUsername"
|
||||
password "$artifactoryPassword"
|
||||
}
|
||||
}
|
||||
}
|
||||
maven { url 'https://plugins.gradle.org/m2/' }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.22
|
||||
commons-beanutils:commons-beanutils:1.9.3
|
||||
commons-collections:commons-collections:3.2.2
|
||||
info.picocli:picocli:3.9.6
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.spring.javaformat:spring-javaformat-checkstyle:0.0.15
|
||||
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
|
||||
io.spring.nohttp:nohttp:0.0.3.RELEASE
|
||||
@@ -23,5 +23,5 @@ org.antlr:antlr4-runtime:4.7.2
|
||||
org.checkerframework:checker-qual:2.5.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
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.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
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.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
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.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jacoco:org.jacoco.ant:0.8.2
|
||||
org.jacoco:org.jacoco.core:0.8.2
|
||||
@@ -11,5 +11,5 @@ org.ow2.asm:asm-analysis:6.2.1
|
||||
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:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
# This file is expected to be part of source control.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5.1
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
net.sf.ehcache:ehcache:2.10.6
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
javax.servlet:javax.servlet-api:4.0.1
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
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.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
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.3.72
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
# 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.
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
commons-codec:commons-codec:1.15
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
junit:junit:4.12
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.5
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.mockito:mockito-core:3.3.3
|
||||
org.objenesis:objenesis:2.6
|
||||
org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -14,7 +14,7 @@ com.puppycrawl.tools:checkstyle:8.22
|
||||
commons-beanutils:commons-beanutils:1.9.3
|
||||
commons-collections:commons-collections:3.2.2
|
||||
info.picocli:picocli:3.9.6
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.spring.javaformat:spring-javaformat-checkstyle:0.0.15
|
||||
io.spring.nohttp:nohttp-checkstyle:0.0.3.RELEASE
|
||||
io.spring.nohttp:nohttp:0.0.3.RELEASE
|
||||
@@ -23,5 +23,5 @@ org.antlr:antlr4-runtime:4.7.2
|
||||
org.checkerframework:checker-qual:2.5.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.RELEASE
|
||||
org.synchronoss.cloud:nio-multipart-parser:1.1.0
|
||||
org.synchronoss.cloud:nio-stream-storage:1.1.3
|
||||
xalan:serializer:2.7.2
|
||||
|
||||
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.RELEASE
|
||||
org.synchronoss.cloud:nio-multipart-parser:1.1.0
|
||||
org.synchronoss.cloud:nio-stream-storage:1.1.3
|
||||
xalan:serializer:2.7.2
|
||||
|
||||
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
+3
-3
@@ -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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
+58
-58
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.RELEASE
|
||||
org.synchronoss.cloud:nio-multipart-parser:1.1.0
|
||||
org.synchronoss.cloud:nio-stream-storage:1.1.3
|
||||
xalan:serializer:2.7.2
|
||||
|
||||
@@ -6,9 +6,9 @@ asm:asm:3.1
|
||||
bouncycastle:bcprov-jdk15:140
|
||||
ch.qos.logback:logback-classic:1.2.3
|
||||
ch.qos.logback:logback-core:1.2.3
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-core:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-databind:2.10.5
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.11.3
|
||||
com.fasterxml.jackson.core:jackson-databind:2.11.3
|
||||
com.fasterxml.woodstox:woodstox-core:5.0.3
|
||||
com.fasterxml:classmate:1.5.1
|
||||
com.github.stephenc.jcip:jcip-annotations:1.0-1
|
||||
@@ -19,7 +19,7 @@ com.google.inject:guice:3.0
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.nimbusds:content-type:2.0
|
||||
com.nimbusds:lang-tag:1.4.4
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.1
|
||||
com.nimbusds:nimbus-jose-jwt:8.20.2
|
||||
com.nimbusds:oauth2-oidc-sdk:7.5
|
||||
com.squareup.okhttp3:mockwebserver:3.14.9
|
||||
com.squareup.okhttp3:okhttp:3.14.9
|
||||
@@ -28,32 +28,32 @@ com.sun.istack:istack-commons-runtime:3.0.7
|
||||
com.sun.mail:javax.mail:1.6.1
|
||||
com.sun.xml.fastinfoset:FastInfoset:1.2.15
|
||||
com.vaadin.external.google:android-json:0.0.20131108.vaadin1
|
||||
commons-codec:commons-codec:1.14
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-collections:commons-collections:3.2.2
|
||||
commons-io:commons-io:2.6
|
||||
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.2
|
||||
io.netty:netty-buffer:4.1.52.Final
|
||||
io.netty:netty-codec-http2:4.1.52.Final
|
||||
io.netty:netty-codec-http:4.1.52.Final
|
||||
io.netty:netty-codec-socks:4.1.52.Final
|
||||
io.netty:netty-codec:4.1.52.Final
|
||||
io.netty:netty-common:4.1.52.Final
|
||||
io.netty:netty-handler-proxy:4.1.52.Final
|
||||
io.netty:netty-handler:4.1.52.Final
|
||||
io.netty:netty-resolver:4.1.52.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.52.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.52.Final
|
||||
io.netty:netty-transport:4.1.52.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.12.RELEASE
|
||||
io.netty:netty-buffer:4.1.56.Final
|
||||
io.netty:netty-codec-http2:4.1.56.Final
|
||||
io.netty:netty-codec-http:4.1.56.Final
|
||||
io.netty:netty-codec-socks:4.1.56.Final
|
||||
io.netty:netty-codec:4.1.56.Final
|
||||
io.netty:netty-common:4.1.56.Final
|
||||
io.netty:netty-handler-proxy:4.1.56.Final
|
||||
io.netty:netty-handler:4.1.56.Final
|
||||
io.netty:netty-resolver:4.1.56.Final
|
||||
io.netty:netty-transport-native-epoll:4.1.56.Final
|
||||
io.netty:netty-transport-native-unix-common:4.1.56.Final
|
||||
io.netty:netty-transport:4.1.56.Final
|
||||
io.projectreactor.netty:reactor-netty:0.9.16.RELEASE
|
||||
io.projectreactor.tools:blockhound:1.0.4.RELEASE
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR12
|
||||
io.projectreactor:reactor-core:3.3.10.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.10.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.2
|
||||
io.rsocket:rsocket-transport-netty:1.0.2
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
io.projectreactor:reactor-core:3.3.13.RELEASE
|
||||
io.projectreactor:reactor-test:3.3.13.RELEASE
|
||||
io.rsocket:rsocket-core:1.0.3
|
||||
io.rsocket:rsocket-transport-netty:1.0.3
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:jsr250-api:1.0
|
||||
@@ -64,8 +64,8 @@ javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.9
|
||||
junit:junit:4.12
|
||||
ldapsdk:ldapsdk:4.1
|
||||
net.bytebuddy:byte-buddy-agent:1.10.5
|
||||
net.bytebuddy:byte-buddy:1.10.10
|
||||
net.bytebuddy:byte-buddy-agent:1.10.14
|
||||
net.bytebuddy:byte-buddy:1.10.17
|
||||
net.jcip:jcip-annotations:1.0
|
||||
net.minidev:accessors-smart:1.2
|
||||
net.minidev:json-smart:2.3
|
||||
@@ -113,8 +113,8 @@ org.apache.velocity:velocity:1.7
|
||||
org.aspectj:aspectjrt:1.9.6
|
||||
org.aspectj:aspectjweaver:1.9.6
|
||||
org.assertj:assertj-core:3.15.0
|
||||
org.bouncycastle:bcpkix-jdk15on:1.64
|
||||
org.bouncycastle:bcprov-jdk15on:1.64
|
||||
org.bouncycastle:bcpkix-jdk15on:1.66
|
||||
org.bouncycastle:bcprov-jdk15on:1.66
|
||||
org.brotli:dec:0.1.2
|
||||
org.checkerframework:checker-compat-qual:2.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.14
|
||||
@@ -133,15 +133,15 @@ org.eclipse.persistence:javax.persistence:2.2.1
|
||||
org.glassfish.jaxb:jaxb-runtime:2.3.1
|
||||
org.glassfish.jaxb:txw2:2.3.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.0.Final
|
||||
org.hibernate:hibernate-core:5.4.22.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.22.Final
|
||||
org.hibernate.common:hibernate-commons-annotations:5.1.2.Final
|
||||
org.hibernate:hibernate-core:5.4.28.Final
|
||||
org.hibernate:hibernate-entitymanager:5.4.28.Final
|
||||
org.hsqldb:hsqldb:2.5.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.1
|
||||
org.jasig.cas.client:cas-client-core:3.6.2
|
||||
org.javassist:javassist:3.27.0-GA
|
||||
org.jboss.logging:jboss-logging:3.3.2.Final
|
||||
org.jboss.logging:jboss-logging:3.4.1.Final
|
||||
org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final
|
||||
org.jboss:jandex:2.1.3.Final
|
||||
org.jboss:jandex:2.2.3.Final
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-reflect:1.3.72
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|
||||
@@ -166,12 +166,12 @@ org.opensaml:opensaml-storage-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-api:3.4.5
|
||||
org.opensaml:opensaml-xmlsec-impl:3.4.5
|
||||
org.ow2.asm:asm:5.0.4
|
||||
org.powermock:powermock-api-mockito2:2.0.7
|
||||
org.powermock:powermock-api-support:2.0.7
|
||||
org.powermock:powermock-core:2.0.7
|
||||
org.powermock:powermock-module-junit4-common:2.0.7
|
||||
org.powermock:powermock-module-junit4:2.0.7
|
||||
org.powermock:powermock-reflect:2.0.7
|
||||
org.powermock:powermock-api-mockito2:2.0.9
|
||||
org.powermock:powermock-api-support:2.0.9
|
||||
org.powermock:powermock-core:2.0.9
|
||||
org.powermock:powermock-module-junit4-common:2.0.9
|
||||
org.powermock:powermock-module-junit4:2.0.9
|
||||
org.powermock:powermock-reflect:2.0.9
|
||||
org.reactivestreams:reactive-streams:1.0.3
|
||||
org.seleniumhq.selenium:htmlunit-driver:2.37.0
|
||||
org.seleniumhq.selenium:selenium-api:3.141.59
|
||||
@@ -188,26 +188,26 @@ org.skyscreamer:jsonassert:1.5.0
|
||||
org.slf4j:jcl-over-slf4j:1.7.30
|
||||
org.slf4j:slf4j-api:1.7.30
|
||||
org.sonatype.sisu.inject:cglib:2.2.1-v20090111
|
||||
org.springframework.data:spring-data-commons:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.10.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework.data:spring-data-commons:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-jpa:2.2.12.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework.ldap:spring-ldap-core:2.3.3.RELEASE
|
||||
org.springframework:spring-aop:5.2.9.RELEASE
|
||||
org.springframework:spring-beans:5.2.9.RELEASE
|
||||
org.springframework:spring-context:5.2.9.RELEASE
|
||||
org.springframework:spring-core:5.2.9.RELEASE
|
||||
org.springframework:spring-expression:5.2.9.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework:spring-jcl:5.2.9.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.9.RELEASE
|
||||
org.springframework:spring-messaging:5.2.9.RELEASE
|
||||
org.springframework:spring-orm:5.2.9.RELEASE
|
||||
org.springframework:spring-test:5.2.9.RELEASE
|
||||
org.springframework:spring-tx:5.2.9.RELEASE
|
||||
org.springframework:spring-web:5.2.9.RELEASE
|
||||
org.springframework:spring-webflux:5.2.9.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.9.RELEASE
|
||||
org.springframework:spring-websocket:5.2.9.RELEASE
|
||||
org.springframework:spring-aop:5.2.12.RELEASE
|
||||
org.springframework:spring-beans:5.2.12.RELEASE
|
||||
org.springframework:spring-context:5.2.12.RELEASE
|
||||
org.springframework:spring-core:5.2.12.RELEASE
|
||||
org.springframework:spring-expression:5.2.12.RELEASE
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
org.springframework:spring-jcl:5.2.12.RELEASE
|
||||
org.springframework:spring-jdbc:5.2.12.RELEASE
|
||||
org.springframework:spring-messaging:5.2.12.RELEASE
|
||||
org.springframework:spring-orm:5.2.12.RELEASE
|
||||
org.springframework:spring-test:5.2.12.RELEASE
|
||||
org.springframework:spring-tx:5.2.12.RELEASE
|
||||
org.springframework:spring-web:5.2.12.RELEASE
|
||||
org.springframework:spring-webflux:5.2.12.RELEASE
|
||||
org.springframework:spring-webmvc:5.2.12.RELEASE
|
||||
org.springframework:spring-websocket:5.2.12.RELEASE
|
||||
org.synchronoss.cloud:nio-multipart-parser:1.1.0
|
||||
org.synchronoss.cloud:nio-stream-storage:1.1.3
|
||||
xalan:serializer:2.7.2
|
||||
|
||||
+3
-3
@@ -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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jetbrains.kotlin:kotlin-bom:1.3.72
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.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-SR12
|
||||
io.projectreactor:reactor-bom:Dysprosium-SR16
|
||||
org.jacoco:org.jacoco.agent:0.8.2
|
||||
org.jacoco:org.jacoco.ant:0.8.2
|
||||
org.jacoco:org.jacoco.core:0.8.2
|
||||
@@ -11,5 +11,5 @@ org.ow2.asm:asm-analysis:6.2.1
|
||||
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:Moore-SR10
|
||||
org.springframework:spring-framework-bom:5.2.9.RELEASE
|
||||
org.springframework.data:spring-data-releasetrain:Moore-SR12
|
||||
org.springframework:spring-framework-bom:5.2.12.RELEASE
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user