[build] Fix issues with build on windows, deprecations, and native utils (#3090)

This commit is contained in:
Thad House
2021-01-16 20:26:52 -08:00
committed by GitHub
parent f393989a5b
commit 6efc58e3db
4 changed files with 7 additions and 3 deletions

4
.gitattributes vendored Normal file
View File

@@ -0,0 +1,4 @@
*.gradle text eol=lf
*.java text eol=lf
*.md text eol=lf
*.xml text eol=lf

View File

@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2020",
"projectYear": "2021",
"teamNumber": 0
}

View File

@@ -5,5 +5,5 @@ repositories {
}
}
dependencies {
implementation "edu.wpi.first:native-utils:2021.1.0"
implementation "edu.wpi.first:native-utils:2021.1.1"
}

View File

@@ -53,7 +53,7 @@ model {
def outputsFolder = file("$project.buildDir/outputs")
def task = project.tasks.create("copyGlassExecutable", Zip) {
description("Copies the Glass executable to the outputs directory.")
destinationDir(outputsFolder)
destinationDirectory = outputsFolder
archiveBaseName = '_M_' + zipBaseName
duplicatesStrategy = 'exclude'