-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.gradle.kts
121 lines (109 loc) · 3.23 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`
groovy
jacoco
`maven-publish`
signing
id("pl.allegro.tech.build.axion-release") version "1.17.2"
id("com.adarshr.test-logger") version "4.0.0"
id("me.champeau.jmh") version "0.7.2"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
}
repositories {
mavenCentral()
}
java {
withSourcesJar()
withJavadocJar()
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
dependencies {
implementation("org.apache.commons:commons-lang3:3.12.0")
implementation("org.parboiled:parboiled-java:1.4.1")
api("org.slf4j:slf4j-api:1.7.32")
testImplementation("org.spockframework:spock-core:2.4-M4-groovy-4.0")
jmh("org.slf4j:slf4j-simple:1.7.32")
}
group = "pl.allegro.tech"
version = scmVersion.version
tasks {
jar {
manifest {
attributes(mapOf("Implementation-Title" to project.name, "Implementation-Version" to project.version))
}
}
}
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}
jmh {
jmhVersion = "1.14.1"
}
publishing {
publications {
create<MavenPublication>("sonatype") {
artifactId = "opel"
from(components.findByName("java"))
versionMapping {
usage("java-api") {
fromResolutionOf("runtimeClasspath")
}
usage("java-runtime") {
fromResolutionResult()
}
}
pom {
name.set("opel")
description.set("Asynchronous expression language")
url.set("https://github.com/allegro/opel")
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
id.set("opel-developers")
name.set("OPEL-DEVELOPERS")
}
}
scm {
connection.set("scm:[email protected]:allegro/opel.git")
developerConnection.set("scm:[email protected]:allegro/opel.git")
url.set("https://github.com/allegro/opel")
}
}
}
}
repositories {
maven {
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
}
}
}
nexusPublishing {
repositories {
sonatype {
username.set(System.getenv("SONATYPE_USERNAME"))
password.set(System.getenv("SONATYPE_PASSWORD"))
}
}
}
System.getenv("GPG_KEY_ID")?.let {
signing {
useInMemoryPgpKeys(
System.getenv("GPG_KEY_ID"),
System.getenv("GPG_PRIVATE_KEY"),
System.getenv("GPG_PRIVATE_KEY_PASSWORD")
)
sign(publishing.publications)
}
}