burrow-pi-img/deps/examples/java-multiCameraServer/build.gradle
Peter Johnson 43c710ec39
Build wpilib with cmake instead of gradle (#15)
* Move java lib install to /usr/local/frc/java
* Build and install both debug and normal OpenCV libraries
* Install OpenCV cmake files
* Build OpenCV Java with version 8 target
* Build static OpenCV for static allwpilib binaries
* Move netconsoleTee install to /usr/local/frc/bin
* Move multiCameraServer default app install to /usr/local/frc/bin
* Install more FRC binaries
* Fix /home/pi/zips/java-multiCameraServer.zip owner to pi:pi
* Remove azure 60 minute timeout
* Add openjdk-8-jdk to Azure docker image (this is needed for cmake to find javah as only cmake 3.9 is available)
2018-12-30 02:07:22 -08:00

31 lines
536 B
Groovy

plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '4.0.3' apply false
}
mainClassName = 'Main'
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
mavenCentral()
flatDir {
dirs '/usr/local/frc/java', '.'
}
}
dependencies {
compile 'com.google.code.gson:gson:2.8.5'
compile name: 'wpiutil'
compile name: 'ntcore'
compile name: 'cscore'
compile name: 'cameraserver'
compile name: 'opencv-344'
}
wrapper {
gradleVersion = '5.0'
}