-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
47 lines (41 loc) · 919 Bytes
/
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
plugins {
kotlin("jvm") version "1.9.22"
`maven-publish`
}
group = "io.github.mcxinyu"
version = "1.0.0"
repositories {
mavenCentral()
}
val sourcesJar by tasks.register<Jar>("sourcesJar") {
from(kotlin.sourceSets.map {
it.kotlin.sourceDirectories.asFileTree
})
archiveClassifier.set("sources")
}
afterEvaluate {
publishing {
publications {
create<MavenPublication>("k-email") {
afterEvaluate { from(components["kotlin"]) }
artifact(sourcesJar)
}
}
repositories {
maven {
name = "XXX"
url = uri("${project.buildDir}/repo")
}
}
}
}
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
implementation("com.sun.mail:jakarta.mail:2.0.1")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}