-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
177 lines (153 loc) · 4.16 KB
/
build.gradle
File metadata and controls
177 lines (153 loc) · 4.16 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
// Do not mess with the following 6 lines
plugins {
id 'com.github.johnrengelman.shadow' version '1.2.4'
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'war'
// This is where you select which operating system to build for.
// Uncomment the line below to build for windows
//ext.buildType = "windows"
// Uncomment the line below to build for a Raspberry Pi running raspbian
ext.buildType = "arm-raspbian"
// Uncomment the line below to build for an armhf device such as a Jetson or a Beaglebone Black
//ext.buildType = "armhf"
// Change the line below if you change the name of your main Java class
mainClassName = 'Main'
// Change the line below to change the name of the output jar
def projectName = 'CameraVision'
def home = System.getProperty("user.home")
// Various tasks defined in the dependencies file
apply from: 'dependencies.gradle'
repositories {
mavenCentral()
maven {
url home + "/releases/maven/development/"
}
maven {
url "http://first.wpi.edu/FRC/roborio/maven/release"
}
}
dependencies {
compile ntcoreDep()
compile cscoreDep()
compile 'org.opencv:opencv-java:3.1.0'
compile 'org.eclipse.jetty:jetty-server:+'
compile 'org.eclipse.jetty:jetty-servlet:+'
compile 'commons-io:commons-io:+'
compile 'org.json:json:+'
compile 'net.engio:mbassador:+'
compile 'de.neuland-bfi:jade4j:+'
compile 'edu.wpi.first.wpilibj:wpilibj-java:+'
compile 'edu.wpi.first.wpiutil:wpiutil-java:+'
compile 'edu.wpi.first.ntcore:ntcore-java:+'
providedCompile 'javax.el:javax.el-api:+'
runtime 'edu.wpi.first.ntcore:ntcore-jni:+'
runtime 'de.odysseus.juel:juel-impl:+'
runtime 'de.odysseus.juel:juel-spi:+'
testCompile 'junit:junit:4.12'
}
gradle.taskGraph.whenReady {taskGraph ->
println "Found task graph: " + taskGraph
println "Found " + taskGraph.allTasks.size() + " tasks."
taskGraph.allTasks.forEach { task ->
println task
task.dependsOn.forEach { dep ->
println " - " + dep
}
}
}
jar {
baseName = projectName
}
shadowJar {
baseName = projectName
}
distributions {
main {
baseName = projectName
contents {
from (openCvUnzipLocation) {
exclude 'META-INF'
exclude '**/MANIFEST.MF'
into 'bin/'
}
from (ntcoreUnzipLocation) {
exclude 'META-INF'
exclude '**/MANIFEST.MF'
into 'bin/'
}
}
}
}
def outputDirectory = file("${rootDir}/output")
task writeExecuteScript() {
dependsOn jar
doLast {
if (buildType == "windows") {
def runFile = new File("${buildDir}/run${projectName}.bat")
runFile.write "java -Djava.library.path=. -jar ${projectName}-all.jar"
} else {
def runFile = new File("${buildDir}/run${projectName}")
runFile.write "java -Djava.library.path=. -jar ${projectName}-all.jar"
}
}
}
task copyToOutput(type: Copy) {
dependsOn shadowJar
dependsOn unzipFiles
dependsOn writeExecuteScript
destinationDir = outputDirectory
from (file(shadowJar.archivePath)) {
}
from (openCvUnzipLocation) {
exclude 'META-INF'
exclude '**/MANIFEST.MF'
}
from (ntcoreUnzipLocation + "/linux/nativearm") {
}
if (buildType == "windows") {
from (file("${buildDir}/run${projectName}.bat")) {
}
} else {
from (file("${buildDir}/run${projectName}")) {
}
}
}
task zipOutput(type: Zip) {
baseName = projectName
duplicatesStrategy = 'exclude'
dependsOn shadowJar
dependsOn unzipFiles
destinationDir = outputDirectory
from (file(shadowJar.archivePath)) {
}
from (openCvUnzipLocation) {
exclude 'META-INF'
exclude '**/MANIFEST.MF'
}
if (buildType == "windows") {
from (file("${buildDir}/run${projectName}.bat")) {
}
} else {
from (file("${buildDir}/run${projectName}")) {
fileMode 0777
}
}
}
test {
testLogging {
showStandardStreams = true
exceptionFormat = 'full'
events "standardOut", "started", "passed", "skipped", "failed"
}
}
distZip.dependsOn unzipFiles
distTar.dependsOn unzipFiles
applicationDefaultJvmArgs = ["-Djava.library.path=${openCvUnzipLocation}"]
build.dependsOn copyToOutput
build.dependsOn zipOutput
run.dependsOn unzipFiles
clean {
delete outputDirectory
}