forked from sylvaingir/j8583
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
103 lines (92 loc) · 2.51 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
apply plugin:'java'
apply plugin: 'maven'
defaultTasks 'build'
version='1.13.0'
description='Java implementation of the ISO 8583 protocol, focused on making the creation, edition and reading of ISO8583 messages as simple and flexible as possible.'
sourceCompatibility=7
targetCompatibility=7
group='net.sf.j8583'
repositories {
mavenCentral()
}
configurations {
deployerJars
published.extendsFrom archives, signatures
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21'
testCompile 'junit:junit:4.12'
testRuntime 'org.slf4j:slf4j-simple:1.7.21'
}
tasks.javadoc.options.use=true
tasks.javadoc.options.links=['http://docs.oracle.com/javase/7/docs/api/', 'http://slf4j.org/apidocs/' ]
task javadocJar(type:Jar, dependsOn:'javadoc') {
from javadoc.destinationDir
classifier='javadoc'
}
task sourcesJar(type:Jar) {
from sourceSets.main.allSource
classifier='sources'
}
tasks.withType(AbstractCompile) { AbstractCompile compile ->
compile.options.debug = true
compile.options.compilerArgs = ['-Xlint:all']
}
artifacts {
archives javadocJar
archives sourcesJar
}
apply plugin:'signing'
signing {
sign configurations.archives
required { gradle.taskGraph.hasTask('generateRelease') }
}
uploadArchives {
repositories {
project.ext.deployer=repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment ->
signing.signPom(deployment)
}
repository(url:'https://oss.sonatype.org/service/local/staging/deploy/maven2/') {
authentication(userName:nexusUsername, password:nexusPassword)
}
pom.project {
name 'j8583'
packaging 'jar'
description project.description
url 'http://j8583.sourceforge.net/'
inceptionYear '2007'
scm {
url 'https://github.com/chochos/j8583'
connection 'scm:git://github.com/chochos/j8583.git'
developerConnection 'scm:[email protected]:chochos/j8583.git'
}
licenses {
license {
name 'GNU Lesser General Public License, version 2.1'
url 'http://www.gnu.org/licenses/lgpl-2.1.html'
distribution 'repo'
}
}
developers {
developer {
id 'chochos'
name 'Enrique Zamudio Lopez'
email '[email protected]'
url 'http://javamexico.org/blogs/ezamudio'
roles {
role 'Architect'
role 'Developer'
}
properties {
twitter 'chochosmx'
}
timezone 'America/Mexico_City'
}
}
}
}
}
}
task generateRelease(dependsOn:uploadArchives, group: "Release artifact",
description: "Generates and uploads a final release to Sonatype Nexus")