-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
55 lines (43 loc) · 1.32 KB
/
build.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
plugins {
kotlin("jvm") version "1.8.22"
kotlin("plugin.serialization") version "1.8.22" apply false
id("org.jetbrains.dokka") version "1.8.20"
}
val releases = uri("http://nexus3.riscure.com:8081/repository/riscure")
val snapshots = uri("http://nexus3.riscure.com:8081/repository/riscure-snapshots")
fun systemProperty(key: String): String? = System.getProperty(key)
val bambooLocal = systemProperty("bambooMavenLocalRepo") ?: "../../../.repo/"
repositories {
maven {
url = uri(bambooLocal)
name = "localBamboo"
}
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
maven {
url = releases
isAllowInsecureProtocol = true
}
maven {
url = snapshots
isAllowInsecureProtocol = true
}
maven {
url = uri("http://nexus3.riscure.com:8081/repository/3rdparty")
isAllowInsecureProtocol = true
}
maven {
url = uri("http://nexus3.riscure.com:8081/repository/3rdparty-snapshots")
isAllowInsecureProtocol = true
}
maven {
url = uri("http://nexus3.riscure.com:8081/repository/p2-proxy")
isAllowInsecureProtocol = true
}
maven {
url = uri("http://nexus3.riscure.com:8081/repository/npmjs-org-proxy")
isAllowInsecureProtocol = true
}
mavenLocal()
}