14 lines
554 B
Groovy
14 lines
554 B
Groovy
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.7')
|
|
}
|
|
testLibs {
|
|
version('junit', '5.10.2')
|
|
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
|
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
}
|
|
}
|
|
}
|