-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
212 lines (171 loc) · 4.31 KB
/
build.gradle
File metadata and controls
212 lines (171 loc) · 4.31 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
plugins {
id 'java'
id 'eclipse'
id "maven"
id "maven-publish"
id 'net.saliman.cobertura' version '2.2.6'
id "com.jfrog.bintray" version "1.7"
id 'co.riiid.gradle' version '0.4.2'
id 'synapticloop.documentr' version '2.7.2'
id "synapticloop.copyrightr" version "1.1.1"
id 'com.github.ben-manes.versions' version '0.13.0'
id "synapticloop.projectFilestatistics" version "1.0.2"
}
group = 'synapticloop'
archivesBaseName = 'linode-api'
description = """An api for linode"""
version = '3.1.0'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
configurations {
generate
}
sourceSets {
generate {
java {
srcDir 'src/generate/java'
}
resources {
srcDir 'src/generate/resources'
}
output.resourcesDir = 'build/classes/generate'
output.classesDir = 'build/classes/generate'
compileClasspath += sourceSets.main.output
}
}
eclipse {
classpath {
plusConfigurations += [ configurations.generateCompile ]
}
}
task generateCompile(type: JavaCompile) {
source = sourceSets.generate.java.srcDirs
source += sourceSets.main.java.srcDirs
classpath = configurations.generateCompile
classpath += configurations.compile
destinationDir = file("build/classes/generate")
}
task generate(type: JavaExec) {
dependsOn "generateCompile"
main = "synapticloop.linode.Main"
classpath += configurations.generateRuntime
classpath += configurations.runtime
classpath += sourceSets.generate.output
classpath += sourceSets.main.output
}
task generateSlugs(type: JavaExec) {
dependsOn "generateCompile"
main = "synapticloop.linode.SlugMain"
classpath += configurations.generateRuntime
classpath += configurations.runtime
classpath += sourceSets.generate.output
classpath += sourceSets.main.output
}
dependencies {
runtime 'org.json:json:20160810'
runtime 'org.apache.httpcomponents:httpclient:4.5.2'
runtime 'org.slf4j:slf4j-api:1.7.21'
compile 'org.json:json:20160810'
compile 'org.apache.httpcomponents:httpclient:4.5.2'
compile 'org.slf4j:slf4j-api:1.7.21'
generateCompile 'synapticloop:templar:1.3.0'
generateCompile 'org.jsoup:jsoup:1.9.2'
generateRuntime 'synapticloop:templar:1.3.0'
generateRuntime 'org.jsoup:jsoup:1.9.2'
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.7'
testCompile 'org.apache.logging.log4j:log4j-core:2.7'
testRuntime group: 'junit', name: 'junit', version:'4.12'
testRuntime 'org.apache.logging.log4j:log4j-slf4j-impl:2.7'
testRuntime 'org.apache.logging.log4j:log4j-core:2.7'
}
copyrightr {
dryRun = false
}
projectFilestatistics {
// the files to include in the generation of the statistics
includes = [
"src/main/**/*.*",
"src/docs/**/*.*"
]
// the files to exlude from the generation
excludes = [
]
// the output directory for the generated statistics
outputDirectory = 'src/docs'
}
/*
* COBERTURA
*/
cobertura {
coverageFormats = [ 'html', 'xml']
}
test {
include '**/*Test.class'
maxParallelForks = 1
forkEvery = 50
}
/*
*
* Publish to bintray
*
*/
def javaApiUrl = 'http://docs.oracle.com/javase/1.7.0/docs/api/'
def groovyApiUrl = 'http://groovy.codehaus.org/gapi/'
tasks.withType(Javadoc) {
options.links(javaApiUrl, groovyApiUrl)
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
publishing {
publications {
Synapticloop(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
groupId 'synapticloop'
artifactId 'linode-api'
pom.withXml {
configurations.compile.resolvedConfiguration.firstLevelModuleDependencies.each { dep ->
asNode().dependencies[0].dependency.find {
it.artifactId[0].text() == dep.moduleName &&
it.groupId[0].text() == dep.moduleGroup
}.scope[0].value = 'compile'
}
}
}
}
}
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_PASSWORD')
publications = [ 'Synapticloop' ]
publish = true
pkg {
repo = 'maven'
name = 'linode-api'
}
}
github {
owner = group
repo = archivesBaseName
if(System.getenv('GITHUB_TOKEN')) {
token = System.getenv('GITHUB_TOKEN')
}
tagName = version
name = version
assets = [
'build/libs/' + archivesBaseName + '-' + version + '.jar'
]
}