standardnumber/settings.gradle

31 lines
1 KiB
Groovy
Raw Permalink Normal View History

2023-03-06 17:31:22 +01:00
pluginManagement {
repositories {
mavenLocal()
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
gradlePluginPortal()
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
2024-04-25 21:54:10 +02:00
version('gradle', '8.7')
}
testLibs {
2024-04-25 21:54:10 +02:00
version('junit', '5.10.2')
2023-03-06 17:31:22 +01:00
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
2023-03-06 17:31:22 +01:00
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
library('junit4', 'junit', 'junit').version('4.13.2')
}
}
2023-05-24 12:13:08 +02:00
}