-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
43 lines (38 loc) · 1.75 KB
/
settings.gradle.kts
File metadata and controls
43 lines (38 loc) · 1.75 KB
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
33
34
35
36
37
38
39
40
41
42
43
/*
* 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-output-plugin-sdk")
include(":mmtc-plugin-ampcs")
include(":mmtc-output-plugin-sdk")
include(":mmtc-tlm-source-plugin-sdk")
include(":mmtc-webapp")
include(":mmtc-webapp-ui")
include(":jnispice")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("commons-csv", "org.apache.commons:commons-csv:1.14.0")
library("commons-lang3", "org.apache.commons:commons-lang3:3.18.0")
library("commons-cli", "commons-cli:commons-cli:1.9.0")
library("commons-io", "commons-io:commons-io:2.19.0")
library("log4j-api", "org.apache.logging.log4j:log4j-api:2.25.1")
library("log4j-core", "org.apache.logging.log4j:log4j-core:2.25.1")
library("log4j-jcl", "org.apache.logging.log4j:log4j-jcl:2.25.1")
library("log4j-slf4j", "org.apache.logging.log4j:log4j-slf4j2-impl:2.25.1")
// provides javax.xml.bind classes
library("jakarta-xml", "jakarta.xml.bind:jakarta.xml.bind-api:3.0.1")
library("jaxb-impl", "com.sun.xml.bind:jaxb-impl:3.0.1")
}
create("testlibs") {
library("junit-jupiter-api", "org.junit.jupiter:junit-jupiter-api:5.13.4")
library("junit-jupiter-params", "org.junit.jupiter:junit-jupiter-params:5.13.4")
library("junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-engine:5.13.4")
library("junit-platform-launcher", "org.junit.platform:junit-platform-launcher:1.13.4")
library("mockito-inline", "org.mockito:mockito-inline:4.11.0")
}
}
}