-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
118 lines (101 loc) · 2.81 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
import java.time.Duration
plugins {
id 'java-library'
id 'me.champeau.jmh' version '0.7.2'
id 'maven-publish'
id 'signing'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
group = 'io.github.ititus'
version = '2.3.3'
wrapper {
gradleVersion '8.2'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withSourcesJar()
withJavadocJar()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Test) {
systemProperty 'file.encoding', 'UTF-8'
}
javadoc {
options {
addBooleanOption('Xdoclint:all,-missing', true)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.11.4')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.27.2'
testImplementation 'org.mockito:mockito-core:5.15.2'
testImplementation 'com.google.jimfs:jimfs:1.3.0'
}
test {
useJUnitPlatform()
}
jmh {
jmhVersion = '1.35'
warmupIterations = 2
iterations = 5
fork = 1
}
tasks.withType(me.champeau.jmh.JmhParameters) {
jvmArgsAppend = ['-Dfile.encoding=UTF-8']
}
publishing {
publications {
MyPublication(MavenPublication) {
pom {
name = 'iTitus Commons'
packaging = 'jar'
description = 'Library for commonly needed functionality'
url = 'https://github.com/iTitus/commons'
licenses {
license {
name = 'MIT License'
url = 'https://mit-license.org'
}
}
developers {
developer {
id = 'iTitus'
name = 'iTitus'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/iTitus/commons.git'
developerConnection = 'scm:git:ssh://[email protected]:iTitus/commons.git'
url = 'https://github.com/iTitus/commons'
tag = "v${version}"
}
}
from components.java
}
}
}
signing {
def signingKey = findProperty('signing_key')
def signingPassword = findProperty('signing_password')
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications.MyPublication
}
nexusPublishing {
connectTimeout = clientTimeout = Duration.ofHours(2)
repositories {
sonatype {
stagingProfileId = project.findProperty('ossrh_staging_profile_id')
username = project.findProperty('ossrh_username')
password = project.findProperty('ossrh_password')
}
}
}