-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
85 lines (79 loc) · 2.28 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
plugins {
`java-library`
`maven-publish`
signing
}
group = "dev.badbird.spear"
version = "2.0.0"
repositories {
mavenCentral()
}
dependencies {
}
java {
withJavadocJar()
withSourcesJar()
}
subprojects {
val sourcesJar = tasks.register("sourcesJar", Jar::class.java) {
archiveClassifier = "sources"
from(sourceSets.main.get().allSource)
}
val javadocJar = tasks.register("javadocJar", Jar::class.java) {
archiveClassifier = "javadoc"
from(sourceSets.main.get().allJava)
}
apply(plugin = "java")
apply(plugin = "maven-publish")
apply(plugin = "signing")
apply(plugin = "io.freefair.lombok")
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
versionMapping {
usage("java-api") {
fromResolutionOf("runtimeClasspath")
}
usage("java-runtime") {
fromResolutionResult()
}
}
pom {
name = "Spear"
description = "A annotation wrapper for Javalin"
url = "https://github.com/Badbird5907/Spear/"
developers {
developer {
id = "Badbird5907"
name = "Evan Yu"
email = "[email protected]"
}
}
scm {
connection = "https://github.com/Badbird5907/Spear.git"
developerConnection = "https://github.com/Badbird5907/Spear.git"
url = "https://github.com/Badbird5907/Spear/"
}
}
}
}
}
signing {
sign(publishing.publications["mavenJava"])
}
tasks {
javadoc {
if (JavaVersion.current().isJava9Compatible) {
(options as StandardJavadocDocletOptions).addBooleanOption("html5", true)
}
}
artifacts {
archives(javadocJar)
archives(sourcesJar)
}
build {
dependsOn("shadowJar")
}
}
}