-
Notifications
You must be signed in to change notification settings - Fork 463
/
build.gradle
168 lines (157 loc) · 5.29 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
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
import org.gradle.internal.os.OperatingSystem
apply from: 'jpos/libraries.gradle'
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'pmd'
apply plugin: 'jacoco'
apply plugin: 'project-report'
group = 'org.jpos'
version = '2.1.10-SNAPSHOT'
[ compileJava, compileTestJava, javadoc ]*.options*.encoding = 'UTF-8'
def isSnapshot = version.contains("SNAPSHOT")
def mavenCentralRepo = isSnapshot ?
'https://oss.sonatype.org/content/repositories/snapshots/' :
'https://oss.sonatype.org/service/local/staging/deploy/maven2';
configurations.implementation.transitive = true
javadoc.failOnError = false
pmd.ignoreFailures = true
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jpos.org/maven' }
mavenLocal()
}
if (project.hasProperty("lint")) {
// gradle -Plint ...
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint"
}
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = 'jPOS Project'
description = """
jPOS is an ISO-8583 based financial transaction
library/framework that can be customized and
extended in order to implement financial interchanges.
"""
url = "http://jpos.org"
organization {
name = 'jPOS.org'
url = 'http://jpos.org'
}
issueManagement {
system = 'Github Issues'
url = 'https://github.com/jpos/jPOS/issues'
}
scm {
url = "http://github.com/jpos/jPOS"
connection = "scm:git:https://github.com/jpos/jPOS.git"
developerConnection = "scm:git:[email protected]:jpos/jPOS.git"
}
licenses {
license {
name = 'GNU AFFERO GENERAL PUBLIC LICENSE'
url = 'http://www.gnu.org/licenses/agpl-v3.html'
comments = 'See http://jpos.org/license for more details.'
distribution = 'repo'
}
}
developers {
developer {
id = 'jpos-team'
name = 'jPOS Development Team'
email = '[email protected]'
}
}
}
groupId = 'org.jpos'
artifactId = 'jpos'
from components.java
}
}
repositories {
maven {
def releasesRepoUrl = mavenCentralRepo
def snapshotsRepoUrl = 'file:///opt/local/maven'
url = isSnapshot ? snapshotsRepoUrl : releasesRepoUrl
if (!isSnapshot) {
credentials {
if (project.hasProperty("mavenCentralUsername"))
username = mavenCentralUsername
if (project.hasProperty("mavenCentralPassword"))
password = mavenCentralPassword
}
}
}
}
}
signing {
required { !isSnapshot }
sign publishing.publications.mavenJava
}
javadoc {
configure(options) {
windowTitle = "jPOS ${project.version}"
header = "<b>jPOS ${project.version}</b>"
linkSource = true
links(
'https://docs.oracle.com/javase/8/docs/api'
)
tags(
'apiNote:a:API Note:',
'implSpec:a:Implementation Requirements:',
'implNote:a:Implementation Note:'
)
}
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
systemProperty 'user.language', 'en'
if (!(System.getenv("GITHUB_ACTIONS") != null && System.getenv("GITHUB_ACTIONS") == "true" &&
(OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()))) {
maxParallelForks = Runtime.runtime.availableProcessors()
}
}
jacoco {
toolVersion = '0.8.6'
}
}
// Configure IDEA to use Git
idea {
project {
ipr {
withXml {
provider -> provider.node.component.find {
it.@name == 'VcsDirectoryMappings'
}.mapping.@vcs = 'Git'
}
}
languageLevel = '1.8'
}
}
task aggregatedJavadoc (type: Javadoc, description: "Aggregated Javadocs") {
source subprojects.collect {project ->
project.sourceSets.main.allJava
}
destinationDir = new File(buildDir, 'docs/javadoc')
classpath = files(subprojects.collect {project ->
project.sourceSets.main.compileClasspath})
failOnError = false
}