2021-01-18 22:12:57 -05:00
|
|
|
apply plugin: "java"
|
2021-01-16 20:41:47 -08:00
|
|
|
|
2021-11-27 00:22:51 -05:00
|
|
|
sourceCompatibility = 11
|
|
|
|
|
targetCompatibility = 11
|
|
|
|
|
|
2021-01-16 20:41:47 -08:00
|
|
|
dependencies {
|
2021-01-18 22:12:57 -05:00
|
|
|
implementation "edu.wpi.first.wpimath:wpimath-java:$wpilibVersion"
|
2022-09-28 18:21:41 -07:00
|
|
|
implementation "org.ejml:ejml-simple:0.41"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
|
}
|
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
|
options.encoding = 'UTF-8'
|
2021-01-16 20:41:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
withJavadocJar()
|
|
|
|
|
withSourcesJar()
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 22:12:57 -05:00
|
|
|
apply from: "publish.gradle"
|