-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
150 lines (128 loc) · 4.23 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
import com.ncorti.ktfmt.gradle.tasks.KtfmtCheckTask
import com.ncorti.ktfmt.gradle.tasks.KtfmtFormatTask
import com.vanniktech.maven.publish.SonatypeHost
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.ktfmt)
alias(libs.plugins.vanniktech.mavenPublishBase)
application
}
application {
mainClass = "io.cloudshiftdev.mavensync.MavenSyncMainKt"
}
// publish just the distZip artifact such that consumers can download and run the application
val distConf = configurations.create("dist")
val distArtifact = artifacts.add(distConf.name, tasks.named("distZip"))
publishing {
publications {
create<MavenPublication>("maven") {
artifact(distArtifact)
}
}
}
dependencies {
implementation(libs.ksoup.base)
implementation(platform(libs.ktor.bom))
implementation(libs.ktor.client.core)
implementation(libs.ktor.client.okhttp)
implementation(libs.ktor.client.auth)
implementation(libs.ktor.client.logging)
implementation(libs.kotlinx.coroutines)
implementation(libs.oshai.kotlinLogging)
implementation(libs.guava)
implementation(libs.pearx.kasechange)
implementation(libs.sksmauel.hoplite)
implementation(libs.sksmauel.hoplite.json)
implementation("ch.qos.logback:logback-classic:1.5.16")
}
ktfmt {
kotlinLangStyle()
}
java {
consistentResolution { useCompileClasspathVersions() }
}
tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
}
kotlin {
explicitApi()
jvmToolchain(21)
}
mavenPublishing {
publishToMavenCentral(SonatypeHost.S01, true)
signAllPublications()
pom {
name = "maven-sync"
description = "Sync Maven repositories"
inceptionYear = "2023"
url = "https://github.com/cloudshiftinc/maven-sync"
licenses {
license {
name = "Apache License, Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
distribution = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "cloudshiftchris"
name = "Chris Lee"
email = "chris@cloudshiftconsulting.com"
}
}
scm {
connection = "scm:git:git://github.com/cloudshiftinc/maven-sync.git"
developerConnection = "scm:git:https://github.com/cloudshiftinc/maven-sync.git"
url = "https://github.com/cloudshiftinc/maven-sync"
}
}
}
testing {
suites {
val test by getting(JvmTestSuite::class) {
useJUnitJupiter()
dependencies {
implementation(platform(libs.kotest.bom))
implementation(libs.kotest.assertions.core)
implementation(libs.kotest.runner.junit5)
}
targets {
all {
testTask.configure {
outputs.upToDateWhen { false }
testLogging {
events =
setOf(
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
TestLogEvent.STANDARD_OUT,
TestLogEvent.STANDARD_ERROR
)
exceptionFormat = TestExceptionFormat.FULL
showExceptions = true
showCauses = true
showStackTraces = true
}
}
}
}
}
}
}
val ciBuild = System.getenv("CI") != null
val precommit = tasks.register("precommit") {
group = "verification"
dependsOn("check", "ktfmtFormat")
}
// only check formatting for CI builds
tasks.withType<KtfmtCheckTask>().configureEach {
enabled = ciBuild
}
// always format for non-CI builds
tasks.withType<KtfmtFormatTask>().configureEach {
enabled = !ciBuild
}