forked from lessthanoptimal/BoofCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
265 lines (220 loc) · 7.72 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// TODO insert analytics and adsense into javadoc
ext.libpath = file('./').absolutePath
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'org.boofcv'
version = '0.23-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
apply plugin: 'osgi'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = 1.6
repositories {
mavenCentral()
mavenLocal()
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url = "http://xuggle.googlecode.com/svn/trunk/repo/share/java/"
}
}
test {
ignoreFailures true
reports.html.enabled = false
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources/src'
}
}
test {
java {
srcDir 'test'
srcDir 'generate'
srcDir 'benchmark'
srcDir 'experimental/src'
srcDir 'experimental/test'
}
resources {
srcDir 'resources/test'
}
}
}
dependencies {
compile group: 'org.georegression', name: 'georegression', version: '0.10'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
javadoc {
configure(options) {
failOnError = false
}
}
jar {
manifest { // the manifest of the default jar is of type OsgiManifest
instruction 'Bundle-Vendor', 'BoofCV'
// instruction 'Bundle-Description', 'BoofCV'
instruction 'Bundle-DocURL', 'http://boofcv.org'
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
// if Maven central isn't setup in gradle.properties skip all of this
if( project.hasProperty('ossrhUsername') ) {
signing {
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: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'BoofCV'
packaging 'pom'
// optionally artifactId can be defined here
description 'BoofCV is an open source Java library for real-time computer vision and robotics applications.'
url 'http://boofcv.org'
scm {
connection 'scm:git:git://github.com/lessthanoptimal/BoofCV.git'
developerConnection 'scm:git:git://github.com/lessthanoptimal/BoofCV.git'
url 'https://github.com/lessthanoptimal/BoofCV'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'pabeles'
name 'Peter Abeles'
email '[email protected]'
}
}
}
}
}
}
}
}
// list of projects for creating javadoc and jars
def mainProjects = [
':main:ip',
':main:io',
':main:feature',
':main:geo',
':main:calibration',
':main:sfm',
':main:recognition',
':main:learning',
':main:visualize',
]
def integrationProjects = [
':integration:jcodec',
':integration:WebcamCapture',
':integration:xuggler',
]
try {
project(':integration:android')
integrationProjects.add(':integration:android')
} catch( UnknownProjectException ignore ) {}
try {
project(':integration:openkinect')
integrationProjects.add(':integration:openkinect')
} catch( UnknownProjectException ignore ) {}
def javadocProjects = mainProjects + integrationProjects
// Creates a directory with all the compiled BoofCV jars and the dependencies for main
task createLibraryDirectory( dependsOn: javadocProjects.collect {[ it+':jar',it+':sourcesJar']}.flatten() ) << {
// dependencies for main and their own jars
ext.listExternal = files(mainProjects.collect{ project(it).configurations.compile })
// just the compiled jars for integration
ext.listInternal = files(javadocProjects.collect{ project(it).tasks.jar.archivePath })
// Add source jars
ext.listSource = files(javadocProjects.collect{ project(it).tasks.sourcesJar.archivePath })
ext.listExternal = ext.listExternal - ext.listInternal
file('libraries').deleteDir()
file('libraries').mkdir()
copy {
from ext.listExternal
into 'libraries'
}
copy {
from ext.listInternal
from ext.listSource
into 'libraries'
// append on BoofCV so it's clear which jars are part of BoofCV and which are not
rename { String fileName ->
"BoofCV-" + fileName
}
}
}
// Creates a single jar which contains all the subprojects in main and integration
task oneJarBin(type: Jar, dependsOn: javadocProjects.collect { it + ":compileJava" }) {
baseName = 'BoofCV'
from files(javadocProjects.collect { project(it).sourceSets.main.output })
}
task alljavadoc(type: Javadoc) {
// only include source code in src directory to avoid including 3rd party code which some projects do as a hack
source = javadocProjects.collect { project(it).fileTree('src').include('**/*.java') }
// source = javadocProjects.collect { project(it).sourceSets.main.allJava }
classpath = files(javadocProjects.collect { project(it).sourceSets.main.compileClasspath })
destinationDir = file("${buildDir}/docs/javadoc")
configure(options) {
failOnError = false
docTitle = "BoofCV JavaDoc ($project.version)"
links = [ 'http://docs.oracle.com/javase/7/docs/api/',
'http://ejml.org/javadoc/',
'http://georegression.org/javadoc/',
'http://ddogleg.org/javadoc/']
// bottom = file('misc/bottom.txt').text
}
}
task testReport(type: TestReport) {
destinationDir = file("$buildDir/reports/allTests")
reportOn subprojects*.test
}
idea {
project {
jdkName = '1.6 (64bit)'
languageLevel = '1.6'
}
module {
excludeDirs += file('.idea')
}
}
// Disable the creation of jars for distribution. If you don't do this it will crash
[':main',':examples',':main:checks',':integration',':demonstrations'].each {String a ->
project(a) {
if( project.hasProperty('ossrhUsername') ) {
signArchives.enabled = false
}
sourcesJar.enabled = false
javadocJar.enabled = false
jar.enabled = false
uploadArchives.enabled = false
install.enabled = false
}
}