bibliographic-character-sets/settings.gradle

17 lines
785 B
Groovy
Raw Normal View History

2023-05-22 11:02:37 +02:00
dependencyResolutionManagement {
versionCatalogs {
libs {
2024-07-10 18:54:24 +02:00
version('gradle', '8.7')
2023-10-21 22:21:31 +02:00
}
testLibs {
2024-07-10 18:54:24 +02:00
version('junit', '5.10.3')
2023-05-22 11:02:37 +02: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')
2024-07-10 18:54:24 +02:00
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
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')
}
}
}