-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
40 lines (32 loc) · 919 Bytes
/
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
plugins {
id("com.labijie.infra") version Versions.infraPlugin
}
allprojects {
group = "com.labijie"
version = "1.4.2"
infra {
useDefault {
includeSource = true
includeDocument = true
infraBomVersion = Versions.infraBom
kotlinVersion = Versions.kotlin
}
}
}
subprojects {
if(!project.name.startsWith("dummy")){
infra {
publishing {
pom {
description = "labijie caching library"
githubUrl("endink", "caching-kotlin")
artifactId {
if (it.name == "core") "caching-kotlin" else "caching-kotlin-" + it.name
}
developer("AndersXiao", "[email protected]")
}
toGithubPackages("endink", "caching-kotlin")
}
}
}
}