-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle.kts
134 lines (121 loc) · 3.9 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
import com.vanniktech.maven.publish.MavenPublishBaseExtension
import com.vanniktech.maven.publish.SonatypeHost
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
repositories {
mavenCentral()
jcenter()
maven(url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath(libs.dokkaGradlePlugin)
classpath(libs.kotlinGradlePlugin)
classpath(libs.spotlessPlugin)
classpath(libs.mavenPublishGradlePlugin)
classpath(libs.wireGradlePlugin)
}
}
allprojects {
group = "app.cash.barber"
version = project.findProperty("VERSION_NAME") as? String ?: "0.0-SNAPSHOT"
plugins.withId("com.vanniktech.maven.publish.base") {
configure<MavenPublishBaseExtension> {
publishToMavenCentral(SonatypeHost.DEFAULT, automaticRelease = true)
signAllPublications()
pom {
description.set("A type safe Kotlin JVM library for building up localized, fillable, themed documents using Mustache templating.")
name.set(project.name)
url.set("https://github.com/cashapp/barber/")
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
}
}
scm {
url.set("https://github.com/cashapp/barber/")
connection.set("scm:git:git://github.com/cashapp/barber.git")
developerConnection.set("scm:git:ssh://[email protected]/cashapp/barber.git")
}
developers {
developer {
id.set("square")
name.set("Square, Inc.")
}
}
}
}
}
}
subprojects {
apply(plugin = "org.jetbrains.dokka")
// TODO bring back once Kotlin 1.4 trailing commas are supported
// apply(plugin = "com.diffplug.gradle.spotless")
// Only apply if the project has the kotlin plugin added:
plugins.withType<KotlinPluginWrapper> {
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
// dependsOn("spotlessKotlinApply")
}
tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
}
configurations {
val apiElements by getting {
attributes {
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 8)
}
}
val runtimeElements by getting {
attributes {
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 8)
}
}
}
}
repositories {
mavenCentral()
jcenter()
}
// TODO bring back once Kotlin 1.4 trailing commas are supported
// spotless {
// kotlin {
// target "**/*.kt"
// ktlint(libs.versions.ktlint.get()).userData(listOf("indent_size": "2", "continuation_indent_size" : "4"))
// }
// }
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events("started", "passed", "skipped", "failed")
exceptionFormat = TestExceptionFormat.FULL
showExceptions = true
showStackTraces = true
}
}
// We have to set the dokka configuration after evaluation since the com.vanniktech.maven.publish
// plugin overwrites our dokka configuration on projects where it's applied.
afterEvaluate {
tasks.withType<DokkaTask>().configureEach {
val dokkaTask = this
dokkaSourceSets.configureEach {
reportUndocumented.set(false)
skipDeprecated.set(true)
jdkVersion.set(8)
if (dokkaTask.name == "dokkaGfm") {
outputDirectory.set(project.file("$rootDir/docs/0.x"))
}
}
}
}
if (file("$rootDir/hooks.gradle").exists()) {
apply(from = file("$rootDir/hooks.gradle"))
}
}