2022-10-28 15:57:06 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-04 09:10:20 +01:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
components {
|
|
|
|
all {
|
|
|
|
allVariants {
|
|
|
|
withDependencies {
|
|
|
|
removeAll {
|
|
|
|
// TODO: Remove this transient dependency exclude once we are on SpringBoot 3.2.x
|
|
|
|
// as well as the related explicit dependency in build.gradle
|
|
|
|
// and the dependency suppression in owasp-dependency-check-suppression.xml.
|
|
|
|
it.module in [ 'snakeyaml' ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 13:14:56 +02:00
|
|
|
rootProject.name = 'hsadmin-ng'
|