-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.gradle.kts
59 lines (53 loc) · 2.92 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* ****************************************************************************
* Copyright 2023 Spectra Logic Corporation. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
* this file except in compliance with the License. A copy of the License is located at
* http://www.apache.org/licenses/LICENSE-2.0
* or in the "license" file accompanying this file.
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
* **************************************************************************
*/
plugins {
id("org.gradle.toolchains.foojay-resolver-convention").version("0.7.0")
}
rootProject.name = "blackpearl-mgmt-client"
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
create("libs") {
version("assert4j", "3.24.2")
version("hamcrest", "1.3")
version("jackson", "2.15.2")
version("junit-jupiter", "5.9.2")
version("junit", "4.13.2")
version("okhttp", "4.11.0")
version("okio-jvm", "3.5.0")
version("reactivex", "3.1.6")
version("retrofit", "2.9.0")
version("slf4j", "1.7.36")
library("jacksonBom", "com.fasterxml.jackson", "jackson-bom").versionRef("jackson")
library("okhttp", "com.squareup.okhttp3", "okhttp").versionRef("okhttp")
library("okioJvm", "com.squareup.okio", "okio-jvm").versionRef("okio-jvm")
library("reactivexRxjava", "io.reactivex.rxjava3", "rxjava").versionRef("reactivex")
library("retrofit", "com.squareup.retrofit2", "retrofit").versionRef("retrofit")
library("retrofitConverterJackson", "com.squareup.retrofit2", "converter-jackson").versionRef("retrofit")
library("retrofitAdapterRxjava2", "com.squareup.retrofit2", "adapter-rxjava2").versionRef("retrofit")
library("slf4jApi", "org.slf4j", "slf4j-api").versionRef("slf4j")
// test only libraries
library("assertjCore", "org.assertj", "assertj-core").versionRef("assert4j")
library("hamcrestLibrary", "org.hamcrest", "hamcrest-library").versionRef("hamcrest")
library("junit", "junit", "junit").versionRef("junit")
library("junitJupiterApi", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit-jupiter")
library("junitVintageEngine", "org.junit.vintage", "junit-vintage-engine").versionRef("junit-jupiter")
library("slf4jSimple", "org.slf4j", "slf4j-simple").versionRef("slf4j")
// gradle plugins
plugin("owaspDepCheck","org.owasp.dependencycheck").version("8.4.0")
plugin("versions", "com.github.ben-manes.versions").version("0.48.0")
}
}
}