Skip to content

Commit

Permalink
Added msgpack
Browse files Browse the repository at this point in the history
  • Loading branch information
zbuster05 committed Jan 21, 2022
1 parent aecc2f1 commit 26b43ae
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,24 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "java",
"name": "Launch UDPTest",
"request": "launch",
"mainClass": "org.usfirst.frc4904.standard.udp.UDPTest",
"projectName": "2022-Code"
},
{
"type": "wpilib",
"name": "WPILib Desktop Debug",
"request": "launch",
"desktop": true,
"desktop": true
},
{
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
"desktop": false,
"desktop": false
}
]
}
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def includeDesktopSupport = false
// Defining my dependencies. In this case, WPILib (+ friends), and vendor libraries.
// Also defines JUnit 4.
dependencies {
implementation wpi.java.deps.wpilib()
implementation 'org.msgpack:msgpack-core:0.9.0'
implementation wpi.java.deps.wpilib()
implementation wpi.java.vendor.java()

roborioDebug wpi.java.deps.wpilibJniDebug(wpi.platforms.roborio)
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import org.gradle.internal.os.OperatingSystem
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
String frcYear = '2022'
File frcHome
Expand Down

0 comments on commit 26b43ae

Please sign in to comment.