2018-12-08 08:41:12 +00:00
|
|
|
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 {
|
2018-12-30 10:07:22 +00:00
|
|
|
dirs '/usr/local/frc/java', '.'
|
2018-12-08 08:41:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
2019-01-11 21:13:15 +00:00
|
|
|
compile name: 'wpilibj'
|
|
|
|
compile name: 'wpiHal'
|
2018-12-08 08:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wrapper {
|
|
|
|
gradleVersion = '5.0'
|
|
|
|
}
|