-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
121 lines (104 loc) · 3.77 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
plugins {
`java-library`
`maven-publish`
signing
}
group = project.property("GROUP_ID")!!
version = project.property("PROJECT_VERSION")!!
repositories {
jcenter()
}
dependencies {
compileOnly("io.github.vincenzopalazzo:material-ui-swing:1.1.1-rc4")
testImplementation("io.github.vincenzopalazzo:material-ui-swing:1.1.1-rc4")
testImplementation("org.swinglabs.swingx:swingx-all:1.6.4")
testImplementation("com.github.jiconfont:jiconfont-swing:1.0.0")
testImplementation("com.github.jiconfont:jiconfont-google_material_design_icons:2.2.0.2")
}
/* With java9
plugins.withType<JavaPlugin>().configureEach {
configure<JavaPluginExtension> {
modularity.inferModulePath.set(true)
}
}
java {
modularity.inferModulePath.set(true)
}
*/
tasks{
create<Jar>("sourcesJar") {
archiveClassifier.set("sources")
from(sourceSets["main"].allSource)
}
create<Jar>("javadocJar") {
archiveClassifier.set("javadoc")
from(sourceSets["main"].allSource)
}
withType<JavaCompile>().configureEach {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
options.encoding = "ISO-8859-1"
}
withType<Jar>().configureEach {
// add META-INF/LICENSE to all created JARs
from("${rootDir}/LICENSE") {
into("META-INF")
}
}
}
tasks.jar {
manifest {
attributes("Automatic-Module-Name" to project.property("MODULE_NAME").toString())
}
}
publishing {
publications {
create<MavenPublication>(project.name) {
from(components["java"])
artifact(tasks["sourcesJar"])
artifact(tasks["javadocJar"])
repositories {
maven {
credentials {
username = project.property("sonatypeUsername").toString()
password = project.property("sonatypePassword").toString()
}
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl
}
}
pom {
name.set("DarkStackOverflowTheme")
description.set("implementation of Stack overflow dark theme for material-ui-swing library")
url.set("https://github.com/material-ui-swing/DarkStackOverflowTheme")
licenses {
license {
name.set("BSD 3-Clause \"New\" or \"Revised\"")
url.set("https://github.com/material-ui-swing/DarkStackOverflowTheme/blob/master/LICENSE.md")
}
}
developers {
developer {
id.set("vincenzopalazzo")
name.set("Vincenzo Palazzo")
email.set("[email protected]")
url.set("https://github.com/vincenzopalazzo")
roles.addAll("developer")
timezone.set("Europe/Rome")
}
}
scm {
connection.set("scm:git:git://github.com/material-ui-swing/DarkStackOverflowTheme.git")
developerConnection.set("scm:git:ssh://github.com:material-ui-swing/DarkStackOverflowTheme.git")
url.set("https://github.com/material-ui-swing/DarkStackOverflowTheme.git")
}
}
}
}
}
signing {
isRequired = true
sign(tasks["sourcesJar"], tasks["javadocJar"])
sign(publishing.publications[project.name])
}