bibliographic-character-sets/settings.gradle

17 lines
784 B
Groovy
Raw Permalink Normal View History

2023-05-22 11:02:37 +02:00
dependencyResolutionManagement {
versionCatalogs {
libs {
2023-10-21 22:21:31 +02:00
version('gradle', '8.4')
}
testLibs {
2023-05-22 11:02:37 +02:00
version('junit', '5.9.2')
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')
2023-10-21 22:21:31 +02:00
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
2023-05-22 11:02:37 +02:00
library('junit4', 'junit', 'junit').version('4.13.2')
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
}
}
}