-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
116 lines (98 loc) · 3.1 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
}
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'gwt-base'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = "com.goharsha"
archivesBaseName = "easyxml"
version = "0.1"
// Check if the required properties are included, so we prevent our
// build from failing.
if (project.hasProperty('ossrhUsername'))
{
project.ext.ossrhUsername = ossrhUsername
project.ext.ossrhPassword = ossrhPassword
}
else
{
// We might be running on another system where he is not
// the owner who can push to OSSRH through maven. Set
// default values so he can still build the library locally.
project.ext.ossrhUsername = ''
project.ext.ossrhPassword = ''
}
repositories {
jcenter()
mavenCentral()
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task gwtJar(type: Jar) {
classifier = "gwt"
from sourceSets.main.allSource
from sourceSets.main.output
}
artifacts {
archives gwtJar, javadocJar, sourcesJar
}
dependencies {
testCompile 'junit:junit:4.12'
}
signing {
// Only sign the archives if there is a username. This allows one to build the library
// on systems with no username set.
if (ossrhUsername != '')
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: project.ext.ossrhUsername, password: project.ext.ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: project.ext.ossrhUsername, password: project.ext.ossrhPassword)
}
pom.project {
name 'EasyXML'
packaging 'jar'
description 'An easy to use GWT compatible XML parser for Java'
url 'https://github.com/sriharshachilakapati/EasyXML/'
scm {
connection 'scm:git:[email protected]:sriharshachilakapati/EasyXML.git'
developerConnection 'scm:git:[email protected]:sriharshachilakapati/EasyXML.git'
url '[email protected]:sriharshachilakapati/EasyXML.git'
}
licenses {
license {
name 'The MIT License (MIT)'
url 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id 'sriharshachilakapati'
name 'Sri Harsha Chilakapati'
email '[email protected]'
}
}
}
}
}
}