generated from OSGP/gxf-service-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
30 lines (22 loc) · 1.05 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
// SPDX-FileCopyrightText: Contributors to the GXF project
//
// SPDX-License-Identifier: Apache-2.0
rootProject.name = "sng-coap-http-proxy"
include("application")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlinLogging", "7.0.0")
version("mockk", "1.13.13")
version("commonsCodec", "1.17.1")
version("californium", "3.8.0")
version("wiremock", "3.6.0")
library("californiumCore", "org.eclipse.californium", "californium-core").versionRef("californium")
library("californiumScandium", "org.eclipse.californium", "scandium").versionRef("californium")
library("kotlinLoggingJvm", "io.github.oshai", "kotlin-logging-jvm").versionRef("kotlinLogging")
library("commonsCodec", "commons-codec", "commons-codec").versionRef("commonsCodec")
library("mockk", "io.mockk", "mockk").versionRef("mockk")
library("wiremock", "org.wiremock", "wiremock-standalone").versionRef("wiremock")
}
}
}