-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
128 lines (117 loc) · 3.65 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
apply from: 'jpos/libraries.gradle'
allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'pmd'
group = 'org.jpos'
version = '1.9.7-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';
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenLocal()
mavenCentral()
maven { url 'http://download.oracle.com/maven' }
maven { url 'http://jline.sourceforge.net/m2repo' }
}
if (project.hasProperty("lint")) {
// gradle -Plint ...
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint"
}
}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
def pomConfig = {
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'
inceptionYear '1998'
organization {
name 'jPOS.org'
url 'http://jpos.org'
}
issueManagement {
system 'YouTrack'
url 'https://jpos.org/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]'
}
}
}
signing {
required { !isSnapshot }
sign configurations.archives
}
configure(install.repositories.mavenInstaller) {
pom.project pomConfig
}
uploadArchives {
repositories {
mavenDeployer {
pom.project pomConfig
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
/*
repository(url: mavenCentralRepo) {
authentication(userName: mavenCentralUsername, password: mavenCentralPassword)
}
*/
repository(url: 'file:///opt/local/maven')
}
}
}
}
subprojects {
configurations.compile.transitive = true
javadoc.failOnError = false
pmd.ignoreFailures = true
}
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
}
task wrapper( type: Wrapper ) {
gradleVersion = '1.9'
}
// Configure IDEA to use Git
idea.project.ipr {
withXml { provider ->
provider.node.component.find { it.@name == 'VcsDirectoryMappings' }.mapping.@vcs = 'Git'
}
}