-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (34 loc) · 1020 Bytes
/
build.gradle
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
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
id "net.researchgate.release" version "3.0.2"
}
nexusPublishing {
repositories {
sonatype()
}
}
group = "com.high-mobility"
subprojects {
repositories {
mavenCentral()
}
// nexus-publish plugin needs to be in root build.gradle and it
// also needs the correct group to create the repository
// https://github.com/gradle-nexus/publish-plugin/issues/81
group = "com.high-mobility"
}
ext {
kotlin_version = "1.9.20"
depLocation = 0
coroutinesVersion = '1.7.3'
koinVersion = '3.5.0'
ver = [
"hmkit-crypto-telematics": "0.1",
"hmkit-auto-api" : "13.1.1",
]
deps = [
"hmkit" : "com.high-mobility:hmkit-fleet:${ver."hmkit-fleet"}",
"crypto" : "com.high-mobility:hmkit-crypto-telematics:${ver."hmkit-crypto-telematics"}",
"autoApi": "com.high-mobility:hmkit-auto-api:${ver."hmkit-auto-api"}"
]
}