Files
PhotonVision/photon-targeting/build.gradle

24 lines
413 B
Groovy
Raw Normal View History

apply plugin: "java"
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation "edu.wpi.first.wpimath:wpimath-java:$wpilibVersion"
implementation "org.ejml:ejml-simple:0.41"
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
}
java {
withJavadocJar()
withSourcesJar()
}
apply from: "publish.gradle"