-
Notifications
You must be signed in to change notification settings - Fork 77
/
build.gradle.kts
194 lines (167 loc) · 6.37 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import com.diffplug.gradle.spotless.SpotlessExtension
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.net.URL
// To publish the release artifact to CloudSmith repo run the following :
// ./gradlew publish -PcloudsmithUser=<user> -PcloudsmithApiKey=<api-key>
description = "a libp2p implementation for the JVM, written in Kotlin"
plugins {
val kotlinVersion = "1.6.21"
id("org.jetbrains.kotlin.jvm") version kotlinVersion apply false
id("com.github.ben-manes.versions").version("0.51.0")
id("idea")
id("io.gitlab.arturbosch.detekt").version("1.22.0")
id("java")
id("maven-publish")
id("org.jetbrains.dokka").version("1.9.20")
id("com.diffplug.spotless").version("6.25.0")
id("java-test-fixtures")
id("io.spring.dependency-management").version("1.1.6")
id("org.jetbrains.kotlin.android") version kotlinVersion apply false
id("com.android.application") version "7.4.2" apply false
}
fun Project.getBooleanPropertyOrFalse(propName: String) =
(this.properties[propName] as? String)?.toBoolean() ?: false
configure(
allprojects
.filterNot {
it.getBooleanPropertyOrFalse("libp2p.gradle.custom")
}
) {
group = "io.libp2p"
version = "develop"
apply(plugin = "kotlin")
apply(plugin = "idea")
apply(plugin = "java")
apply(plugin = "io.gitlab.arturbosch.detekt")
apply(plugin = "maven-publish")
apply(plugin = "org.jetbrains.dokka")
apply(plugin = "com.diffplug.spotless")
apply(plugin = "java-test-fixtures")
apply(plugin = "io.spring.dependency-management")
apply(from = "$rootDir/versions.gradle")
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
implementation("com.google.guava:guava")
implementation("org.slf4j:slf4j-api")
testFixturesImplementation("com.google.guava:guava")
testFixturesImplementation("org.slf4j:slf4j-api")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testImplementation("io.mockk:mockk")
testImplementation("org.assertj:assertj-core")
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl")
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
kotlinOptions {
languageVersion = "1.6"
allWarningsAsErrors = true
freeCompilerArgs = listOf("-Xjvm-default=all")
}
}
tasks.withType<Copy> {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
// Parallel build execution
tasks.test {
description = "Runs the unit tests."
useJUnitPlatform {
excludeTags("interop")
}
testLogging {
events("FAILED")
exceptionFormat = TestExceptionFormat.FULL
showCauses = true
showExceptions = true
showStackTraces = true
}
// disabling the parallel test runs for the time being due to port collisions
// If GRADLE_MAX_TEST_FORKS is not set, use half the available processors
// maxParallelForks = (System.getenv("GRADLE_MAX_TEST_FORKS")?.toInt() ?:
// Runtime.getRuntime().availableProcessors().div(2))
}
configure<SpotlessExtension> {
kotlin {
ktlint().editorConfigOverride(
mapOf(
"ktlint_standard_no-wildcard-imports" to "disabled",
"ktlint_standard_enum-entry-name-case" to "disabled",
"ktlint_standard_trailing-comma-on-call-site" to "disabled",
"ktlint_standard_trailing-comma-on-declaration-site" to "disabled",
"ktlint_standard_value-parameter-comment" to "disabled",
"ktlint_standard_value-argument-comment" to "disabled",
"ktlint_standard_property-naming" to "disabled",
"ktlint_standard_function-naming" to "disabled"
)
)
}
java {
targetExclude("**/generated/**/proto/**")
googleJavaFormat()
}
}
val sourcesJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
from(sourceSets.main.get().allSource)
}
tasks.dokkaHtml.configure {
outputDirectory.set(buildDir.resolve("dokka"))
dokkaSourceSets {
configureEach {
jdkVersion.set(11)
reportUndocumented.set(false)
externalDocumentationLink {
url.set(URL("https://netty.io/4.1/api/"))
}
}
}
}
val dokkaJar: TaskProvider<Jar> by tasks.registering(Jar::class) {
group = JavaBasePlugin.DOCUMENTATION_GROUP
val dokkaJavadocTask = tasks.getByName("dokkaJavadoc")
dependsOn(dokkaJavadocTask)
archiveClassifier.set("javadoc")
from(dokkaJavadocTask.outputs)
}
publishing {
repositories {
maven {
name = "cloudsmith"
url = uri("https://api-g.cloudsmith.io/maven/libp2p/jvm-libp2p")
credentials {
username = findProperty("cloudsmithUser") as String?
password = findProperty("cloudsmithApiKey") as String?
}
}
}
if (hasProperty("mavenArtifactId")) {
publications {
register("mavenJava", MavenPublication::class) {
from(components["java"])
versionMapping {
usage("java-api") {
fromResolutionOf("runtimeClasspath")
}
usage("java-runtime") {
fromResolutionResult()
}
}
artifact(sourcesJar.get())
artifact(dokkaJar.get())
groupId = "io.libp2p"
artifactId = project.property("mavenArtifactId") as String
}
}
}
}
detekt {
config = files("$rootDir/detekt/config.yml")
buildUponDefaultConfig = true
}
}