-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
64 lines (56 loc) · 1.18 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
56
57
58
59
60
61
62
63
64
plugins {
kotlin("jvm") version ("1.4.30")
id("org.jetbrains.dokka") version "1.4.30"
maven
`maven-publish`
jacoco
}
group = "ch.grisu118"
version = "1.1.0"
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))
testImplementation(kotlin("test-junit"))
}
tasks {
"jacocoTestReport"(JacocoReport::class) {
reports {
xml.isEnabled = true
html.isEnabled = true
}
}
}
java {
withJavadocJar()
withSourcesJar()
}
tasks.javadoc.configure {
dependsOn("dokkaHtml")
setDestinationDir(File(buildDir, "dokka/html"))
}
tasks.assemble.configure {
doLast {
logger.lifecycle("::set-output name=version::$version")
}
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/lightspots/csvexporter")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}
publications {
create<MavenPublication>("gpr") {
from(components["java"])
}
}
}