-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
131 lines (110 loc) · 2.87 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
// Do not mess with the following 6 lines
plugins {
id 'com.github.johnrengelman.shadow' version '1.2.4'
}
apply plugin: 'java'
apply plugin: 'application'
// 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'
// Shouldn't need to change anything below this point
apply from: 'dependencies.gradle'
repositories {
mavenCentral()
maven {
url "http://first.wpi.edu/FRC/roborio/maven/release"
}
}
dependencies {
compile ntcoreDep()
compile cscoreDep()
compile 'org.opencv:opencv-java:3.1.0'
}
jar {
baseName = projectName
}
shadowJar {
baseName = projectName
}
distributions {
main {
baseName = projectName
contents {
from (openCvUnzipLocation) {
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 unzipOpenCv
dependsOn writeExecuteScript
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}")) {
}
}
}
task zipOutput(type: Zip) {
baseName = projectName
duplicatesStrategy = 'exclude'
dependsOn shadowJar
dependsOn unzipOpenCv
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
}
}
}
distZip.dependsOn unzipOpenCv
distTar.dependsOn unzipOpenCv
applicationDefaultJvmArgs = ["-Djava.library.path=${openCvUnzipLocation}"]
build.dependsOn copyToOutput
build.dependsOn zipOutput
run.dependsOn unzipOpenCv
clean {
delete outputDirectory
}