mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Use unicode characters in docs equations (#3487)
javac and javadoc needed the encoding set to UTF-8.
This commit is contained in:
@@ -96,7 +96,12 @@ sourceSets {
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
options.compilerArgs = ['--release', '11']
|
||||
options.compilerArgs = [
|
||||
'--release',
|
||||
'11',
|
||||
'-encoding',
|
||||
'UTF8'
|
||||
]
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user