-
Notifications
You must be signed in to change notification settings - Fork 79
/
build.gradle
102 lines (85 loc) · 2.59 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
plugins {
id 'me.champeau.jmh' version '0.6.8'
id 'org.javamodularity.moduleplugin' version '1.8.12'
id 'java'
id 'maven-publish'
id 'signing'
}
defaultTasks 'build'
group = 'org.pcollections'
version = '4.0.3-SNAPSHOT'
description = """PCollections"""
repositories {
mavenCentral()
}
dependencies {
// Use JUnit 5: JUnit Jupiter + JUnit Vintage [for running JUnit 3/4 tests as well]
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.0"
testImplementation 'org.junit.vintage:junit-vintage-engine:5.9.0'
testImplementation 'org.assertj:assertj-core:3.23.1'
}
test {
useJUnitPlatform() // Use JUnit 5
}
java {
withSourcesJar()
withJavadocJar()
}
task copyJavadocDocFiles(type: Copy) {
from('src/main/java')
into 'build/docs/javadoc'
include '**/doc-files/*.*'
}
javadoc {
dependsOn copyJavadocDocFiles // https://github.com/gradle/gradle/issues/4046
options.addBooleanOption('Xdoclint:none', true) // https://github.com/hrldcpr/pcollections/issues/62
}
publishing {
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 {
username providers.gradleProperty('ossrhUsername').getOrElse('dummy')
password providers.gradleProperty('ossrhPassword').getOrElse('dummy')
}
}
}
publications {
mavenJava(MavenPublication) {
from components.java
artifactId = 'pcollections'
pom {
name = 'PCollections'
packaging = 'jar'
description = 'A Persistent Java Collections Library'
url = 'https://github.com/hrldcpr/pcollections'
scm {
connection = 'scm:git:git://github.com/hrldcpr/pcollections.git'
developerConnection = 'scm:git:ssh://github.com:hrldcpr/pcollections.git'
url = 'https://github.com/hrldcpr/pcollections'
}
licenses {
license {
name = 'The MIT License'
url = 'https://opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'hrldcpr'
name = 'Harold Cooper'
email = '[email protected]'
}
}
}
}
}
}
signing {
sign(publishing.publications.mavenJava)
}
modularity.mixedJavaRelease 8