mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-21 01:01:41 +00:00
26 lines
460 B
Groovy
26 lines
460 B
Groovy
apply plugin: "java"
|
|
|
|
apply from: "${rootDir}/shared/common.gradle"
|
|
|
|
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"
|