-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
189 lines (156 loc) · 5.63 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'maven-publish'
// Java Settings
sourceCompatibility = 1.7
targetCompatibility = 1.7
// Artifact settings
group = 'be.lukin.poeditor'
version = '0.3.3'
archivesBaseName = 'poeditor-client'
// http://gradle.org/docs/current/userguide/application_plugin.html
mainClassName = "be.lukin.poeditor.JarMain"
def _name = 'POEditor API Client'
def _description = 'API Client for the POEditor API'
repositories {
mavenCentral()
}
dependencies {
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.squareup.okhttp:okhttp:2.0.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
run {
if ( project.hasProperty('args') ) {
args project.args.split('\\s+')
}
}
test {
systemProperties = System.properties
// This test doesn't run on Travis CI. Waiting for a decent stub
exclude 'be/lukin/poeditor/TestClient.class'
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
if(this.hasProperty('remote')) {
sign configurations.archives
}
}
/**
* New way of publishing, not used for now:)
*/
publishing {
publications {
maven(MavenPublication) {
groupId group
artifactId archivesBaseName
version version
from components.java
pom.withXml {
// http://forums.gradle.org/gradle/topics/maven_publishing_plugin_doesnt_upload_generated_pom_file
def root = asNode()
root.appendNode('name', _name);
root.appendNode('description', _description)
root.appendNode('url', 'https://github.com/lukin0110/poeditor-java/')
root.appendNode('inceptionYear', '2015')
def scm = root.appendNode('scm')
scm.appendNode('url', 'https://github.com/lukin0110/poeditor-java/')
scm.appendNode('connection', 'scm:git:https://github.com/lukin0110/poeditor-java.git')
scm.appendNode('developerConnection', 'scm:git:https://github.com/lukin0110/poeditor-java.git')
def license = root.appendNode('licenses').appendNode('license')
license.appendNode('name', 'The Apache Software License, Version 2.0')
license.appendNode('url', 'http://www.apache.org/licenses/LICENSE-2.0.txt')
//license.appendNode('distribution', 'repo')
def developer = root.appendNode('developers').appendNode('developer')
developer.appendNode('id', 'lukin0110')
developer.appendNode('name', 'Maarten Huijsmans')
developer.appendNode('email', '[email protected]')
def issues = root.appendNode('issueManagement')
issues.appendNode('system', 'GitHub issues')
issues.appendNode('url', 'https://github.com/lukin0110/poeditor-java/issues')
}
}
}
}
/**
* Defining the repo to publish to
*/
publishing {
repositories {
maven {
// change to point to your repo, e.g. http://my.org/repo
url "$buildDir/repo"
}
}
}
/**
* Old way of publishing, but still needed
*/
// Username & password for Sonatype, stored in gradle.properties
def _ossrhUsername = this.properties['ossrhUsername']
def _ossrhPassword = this.properties['ossrhPassword']
uploadArchives {
repositories {
mavenDeployer {
if(this.hasProperty('remote')){
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: _ossrhUsername, password: _ossrhPassword)
}
} else {
repository(url: uri('./build/repo'))
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: _ossrhUsername, password: _ossrhPassword)
}
pom.project {
name _name
packaging 'jar'
artifactId archivesBaseName
description _description
url 'https://github.com/lukin0110/poeditor-java/'
scm {
url 'https://github.com/lukin0110/poeditor-java/'
connection 'scm:https://github.com/lukin0110/poeditor-java.git'
developerConnection 'scm:git://github.com/lukin0110/poeditor-java.git'
}
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'lukin0110'
name 'Maarten Huijsmans'
email '[email protected]'
}
}
issueManagement {
system 'GitHub issues'
url 'https://github.com/lukin0110/poeditor-java/issues'
}
}
}
}
}