metrics/settings.gradle

19 lines
767 B
Groovy
Raw Permalink Normal View History

2022-11-03 17:24:27 +01:00
dependencyResolutionManagement {
versionCatalogs {
libs {
2023-10-23 17:34:14 +02:00
version('gradle', '8.4')
}
testLibs {
version('junit', '5.10.2')
2022-11-03 17:24:27 +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')
2023-10-23 17:34:14 +02:00
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
2022-11-03 17:24:27 +01:00
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
}
}
}
include 'metrics-api'
2022-11-03 17:24:27 +01:00
include 'metrics-common'