Files
PhotonVision/photon-targeting/build.gradle
shueja-personal bb63af601d Update to wpilib 2023 beta 7 (#607)
We now need platform specific jars -- reworks actions to support that. Currently only generates 32 bit pi images.
2022-12-16 20:05:23 -05:00

26 lines
447 B
Groovy

apply plugin: "java"
apply from: "${rootDir}/shared/common.gradle"
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation wpilibTools.deps.wpilibJava("wpimath")
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"