-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
executable file
·120 lines (99 loc) · 3.75 KB
/
build.gradle
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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
def compileJavaVersion = "8"
def testJavaVersion = project.findProperty("testJavaVersion") ?: "17"
def jvmVendor = null
logger.lifecycle("Compiling for Java ${compileJavaVersion} and later, testing against Java ${testJavaVersion}")
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'com.github.johnrengelman.shadow'
group = "com.github.therapi"
version = "0.16.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
java {
withJavadocJar()
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(compileJavaVersion)
vendor = jvmVendor
}
}
tasks.withType(Test) {
testLogging.showStandardStreams = true
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(testJavaVersion)
vendor = jvmVendor
}
}
jar.enabled = false // interferes with shadow tasks
shadowJar {
archiveClassifier.set('')
mergeServiceFiles()
relocate 'com.eclipsesource.json', 'com.github.therapi.runtimejavadoc.repack.com.eclipsesource.json'
}
publishing {
publications {
mavenJava(MavenPublication) { publication ->
project.shadow.component(publication)
artifacts = [shadowJar, javadocJar, sourcesJar]
pom {
def githubProjectName = "therapi-runtime-javadoc"
name = "${group}:${project.name}"
description = project.description // defined in gradle.properties
url = "https://github.com/dnault/${githubProjectName}"
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'dnault'
name = 'David Nault'
email = '[email protected]'
organization = 'dnault'
organizationUrl = 'https://github.com/dnault'
}
}
scm {
def gitUrl = "[email protected]:dnault/${githubProjectName}.git"
connection = "scm:git:${gitUrl}"
developerConnection = "scm:git:${gitUrl}"
url = "${gitUrl}"
}
}
}
}
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
// defined externally in gradle.properties
username = project.properties["ossrhUsername"]
password = project.properties["ossrhPassword"]
}
}
}
}
signing {
// Use GPG agent
// https://docs.gradle.org/current/userguide/signing_plugin.html#sec:using_gpg_agent
// Requires "signing.gnupg.keyName" property defined externally in gradle.properties
useGpgCmd()
sign publishing.publications.mavenJava
}
task install {
dependsOn(publishToMavenLocal)
}
}