-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
executable file
·218 lines (197 loc) · 6.35 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
kotlin("jvm") version "1.7.0"
`java-gradle-plugin`
`maven-publish`
id("com.gradle.plugin-publish") version "0.18.0"
signing
}
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
//region Publish
val snapshot: String by project
val pluginId: String by project
val mavenGroupId: String by project
val mavenArtifactId: String by project
val mavenVersion: String by project
val pomName: String by project
val pomDescription: String by project
val pomUrl: String by project
val pomLicenseName: String by project
val pomLicenseUrl: String by project
val developerName: String by project
val developerEmail: String by project
val ossrhUsername: String = properties["ossrh.username"] as String
val ossrhPassword: String = properties["ossrh.password"] as String
group = mavenGroupId
version = "$mavenVersion${if (snapshot.toBoolean()) "-SNAPSHOT" else ""}"
pluginBundle {
website = pomUrl
vcsUrl = pomUrl
tags = listOf("maven", "offline")
mavenCoordinates {
groupId = mavenGroupId
artifactId = mavenArtifactId
}
}
gradlePlugin {
plugins.create("mavenOffline") {
id = pluginId
displayName = pomName
description = pomDescription
implementationClass = "io.github.yubyf.mavenoffline.MavenOfflinePlugin"
}
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
afterEvaluate {
publications {
getByName<MavenPublication>("pluginMaven") {
pom {
name.set(pomName)
artifactId = mavenArtifactId
description.set(pomDescription)
url.set(pomUrl)
licenses {
license {
name.set(pomLicenseName)
url.set(pomLicenseUrl)
}
}
developers {
developer {
name.set(developerName)
email.set(developerEmail)
}
}
scm {
url.set(pom.url.get())
connection.set("scm:git:${url.get()}.git")
developerConnection.set("scm:git:${url.get()}.git")
}
}
}
getByName<MavenPublication>("mavenOfflinePluginMarkerMaven") {
pom {
url.set(pomUrl)
licenses {
license {
name.set(pomLicenseName)
url.set(pomLicenseUrl)
}
}
developers {
developer {
name.set(developerName)
email.set(developerEmail)
}
}
scm {
url.set(pom.url.get())
connection.set("scm:git:${url.get()}.git")
developerConnection.set("scm:git:${url.get()}.git")
}
}
}
}
}
repositories {
maven {
name = "sonatype-snapshot"
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
maven {
name = "sonatype-release"
url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
}
publications {
create<MavenPublication>("release") {
from(components["java"])
artifactId = mavenArtifactId
pom {
packaging = "jar"
name.set(pomName)
description.set(pomDescription)
url.set(pomUrl)
licenses {
license {
name.set(pomLicenseName)
url.set(pomLicenseUrl)
}
}
developers {
developer {
name.set(developerName)
email.set(developerEmail)
}
}
scm {
url.set(pom.url.get())
connection.set("scm:git:${url.get()}.git")
developerConnection.set("scm:git:${url.get()}.git")
}
}
}
}
}
signing {
// Load gpg info in gradle.properties(global)
useGpgCmd()
afterEvaluate {
sign(publishing.publications["release"])
sign(publishing.publications["pluginMaven"])
sign(publishing.publications["mavenOfflinePluginMarkerMaven"])
}
}
//endregion
//region Test
val fixtureClasspath: Configuration by configurations.creating
tasks.pluginUnderTestMetadata {
pluginClasspath.from(fixtureClasspath)
}
val functionalTestSourceSet = sourceSets.create("functionalTest") {
compileClasspath += sourceSets.main.get().output + configurations.testRuntimeClasspath
runtimeClasspath += output + compileClasspath
}
configurations[functionalTestSourceSet.implementationConfigurationName].extendsFrom(configurations.testImplementation.get())
gradlePlugin.testSourceSets(functionalTestSourceSet)
val functionalTestTask = tasks.register<Test>("functionalTest") {
failFast = true
description = "Runs the functional tests."
group = "verification"
testLogging {
events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
}
testClassesDirs = functionalTestSourceSet.output.classesDirs
classpath = functionalTestSourceSet.runtimeClasspath
}
tasks.check {
dependsOn(functionalTestTask)
}
tasks.test {
testLogging {
events(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
}
}
//endregion
dependencies {
implementation("com.squareup.okhttp3:okhttp:4.9.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3")
testImplementation("junit:junit:4.13.2")
testImplementation("com.google.truth:truth:1.1.3")
}