-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
32 lines (28 loc) · 1.18 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
rootProject.name = "mmtc"
include(":mmtc-core")
include(":mmtc-plugin-ampcs")
include(":mmtc-tlm-source-plugin-sdk")
include(":jnispice")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("commons-csv", "org.apache.commons:commons-csv:1.6")
library("commons-lang3", "org.apache.commons:commons-lang3:3.9")
library("commons-cli", "commons-cli:commons-cli:1.4")
library("log4j-api", "org.apache.logging.log4j:log4j-api:2.19.0")
library("log4j-core", "org.apache.logging.log4j:log4j-core:2.19.0")
library("log4j-jcl", "org.apache.logging.log4j:log4j-jcl:2.19.0")
}
create("testlibs") {
library("junit-jupiter-api", "org.junit.jupiter:junit-jupiter-api:5.6.0")
library("junit-jupiter-params", "org.junit.jupiter:junit-jupiter-params:5.6.0")
library("junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-engine:5.6.0")
library("mockito-inline", "org.mockito:mockito-inline:4.11.0")
}
}
}