Skip to content

Commit

Permalink
Added escapes in .vscode/tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKimsey committed Nov 1, 2023
1 parent e9718f3 commit 6cee88d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"label": "INSTALL (Upload to Device)",
"type": "shell",
"command": "mvn install -f pom.xml -Dmaven.javadoc.skip=true",
"command": "mvn install -f pom.xml `-Dmaven.javadoc.skip=true",
"group": "build"
},
{
Expand All @@ -16,31 +16,31 @@
{
"label": "DEPLOY (Run on Device, No Debug)",
"type": "shell",
"command": "mvn deploy -f pom.xml -P noDebug -Dmaven.javadoc.skip=true",
"command": "mvn deploy -f pom.xml -P noDebug `-Dmaven.javadoc.skip=true",
"group": "build"
},
{
"label": "DEPLOY (Run on Device, Debug)",
"type": "shell",
"command": "mvn deploy -f pom.xml -P debug -Dmaven.javadoc.skip=true",
"command": "mvn deploy -f pom.xml -P debug `-Dmaven.javadoc.skip=true",
"group": "build"
},
{
"label": "VERIFY (Verify Project)",
"type": "shell",
"command": "mvn verify -f pom.xml -Dmaven.javadoc.skip=true",
"command": "mvn verify -f pom.xml `-Dmaven.javadoc.skip=true",
"group": "build"
},
{
"label": "CLEAN (Remove Build Output)",
"type": "shell",
"command": "mvn clean -f pom.xml -Dmaven.javadoc.skip=true",
"command": "mvn clean -f pom.xml `-Dmaven.javadoc.skip=true",
"group": "build"
},
{
"label": "UPDATE (Get Latest Dependencies)",
"type": "shell",
"command": "mvn clean -U -f pom.xml -Dmaven.javadoc.skip=true",
"command": "mvn clean -U -f pom.xml `-Dmaven.javadoc.skip=true",
"group": "build"
}
]
Expand Down

0 comments on commit 6cee88d

Please sign in to comment.