forked from oshai/kotlin-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
173 lines (161 loc) · 5.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import org.jetbrains.dokka.gradle.DokkaTask
import java.util.*
plugins {
kotlin("multiplatform") version "1.3.72"
id("com.jfrog.bintray") version "1.8.4"
id("org.jetbrains.dokka") version "0.10.0"
`maven-publish`
`java-library`
}
buildscript {
apply("versions.gradle.kts")
}
group = "io.github.microutils"
version = "1.6.27"
repositories {
mavenCentral()
jcenter()
}
tasks {
register<Jar>("javadocJar") {
val dokkaTask = getByName<DokkaTask>("dokka")
from(dokkaTask.outputDirectory)
dependsOn(dokkaTask)
archiveClassifier.set("javadoc")
}
dokka {
outputFormat = "javadoc"
outputDirectory = "$buildDir/dokka"
}
}
kotlin {
metadata {
mavenPublication {
// make a name of an artifact backward-compatible, default "-metadata"
artifactId = "${rootProject.name}-common"
}
}
jvm {
compilations.named("main") {
// kotlin compiler compatibility options
kotlinOptions {
apiVersion = "1.1"
languageVersion = "1.1"
}
}
mavenPublication {
// make a name of jvm artifact backward-compatible, default "-jvm"
artifactId = rootProject.name
}
}
js {
compilations.named("main") {
kotlinOptions {
metaInfo = true
sourceMap = true
verbose = true
moduleKind = "umd"
}
}
}
linuxX64("linuxX64")
sourceSets {
commonMain {
dependencies {
implementation(kotlin("stdlib-common"))
}
}
commonTest {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
named("jvmMain") {
dependencies {
implementation(kotlin("stdlib"))
api("org.slf4j:slf4j-api:${extra["sl4j_version"]}")
}
}
named("jvmTest") {
dependencies {
implementation(kotlin("test"))
implementation(kotlin("test-junit"))
implementation("junit:junit:${extra["junit_version"]}")
implementation("org.mockito:mockito-all:${extra["mockito_version"]}")
implementation("org.apache.logging.log4j:log4j-api:${extra["log4j_version"]}")
implementation("org.apache.logging.log4j:log4j-core:${extra["log4j_version"]}")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:${extra["log4j_version"]}")
}
}
named("jsMain") {
dependencies {
implementation(kotlin("stdlib-js"))
}
}
named("jsTest") {
dependencies {
implementation(kotlin("test-js"))
}
}
}
}
publishing {
publications.withType<MavenPublication> {
pom {
name.set("kotlin-logging")
description.set("kotlin-logging $version - Lightweight logging framework for Kotlin")
url.set("https://github.com/MicroUtils/kotlin-logging")
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
name.set("Ohad Shai")
email.set("ohadshai@gmail.com")
organization.set("github")
organizationUrl.set("http://www.github.com")
}
}
scm {
connection.set("scm:git:git://github.com/MicroUtils/kotlin-logging.git")
developerConnection.set("scm:git:ssh://github.com:MicroUtils/kotlin-logging.git")
url.set("http://github.com/MicroUtils/kotlin-logging/tree/master")
}
}
artifact(tasks["javadocJar"])
}
}
bintray {
user = "oshai"//project.hasProperty("bintrayUser") ? project.property("bintrayUser") : System.getenv("BINTRAY_USER")
key = "mykey" //https://bintray.com/profile/edit
// project.hasProperty("bintrayApiKey") ? project.property("bintrayApiKey") : System.getenv("BINTRAY_API_KEY")
setPublications("metadata", "jvm", "js")
publish = true //[Default: false] Whether version should be auto published after an upload
pkg.apply {
repo = "kotlin-logging"
name = "kotlin-logging"
userOrg = "microutils"
setLicenses("Apache-2.0")
vcsUrl = "https://github.com/MicroUtils/kotlin-logging"
websiteUrl = "https://github.com/MicroUtils/kotlin-logging"
issueTrackerUrl = "https://github.com/MicroUtils/kotlin-logging/issues"
githubRepo = "MicroUtils/kotlin-logging"
githubReleaseNotesFile = "ChangeLog.md"
version.apply {
name = "${project.version}"
desc = "kotlin-logging - Lightweight logging framework for Kotlin"
released = "${Date()}"
gpg.sign = true //Determines whether to GPG sign the files. The default is false
mavenCentralSync.apply {
sync = true //[Default: true] Determines whether to sync the version to Maven Central.
user = "token" //OSS user token: mandatory
password = "pass" //OSS user password: mandatory
close = "1" //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
}
}
}
}