Skip to content

Commit

Permalink
[ShuffleLog] Don't try to deploy to RoboRIO
Browse files Browse the repository at this point in the history
  • Loading branch information
rmheuer committed Dec 2, 2023
1 parent 5991374 commit 1e956ff
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions ShuffleLog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import com.badlogicgames.packr.*;

plugins {
id 'java'
id 'edu.wpi.first.GradleRIO' version '2024.1.1-beta-3'
// id 'edu.wpi.first.GradleRIO' version '2024.1.1-beta-3'
id 'edu.wpi.first.WpilibTools' version '1.1.0'
}

Expand All @@ -21,7 +21,13 @@ compileJava {
targetCompatibility = '17'
}

def WPILIB_VERSION = wpi.versions.wpilibVersion.get()
// ALL of these should be updated when updating WPILib version
// They are found in https://github.com/wpilibsuite/GradleRIO/blob/main/src/main/java/edu/wpi/first/gradlerio/wpi/WPIVersionsExtension.java
def WPILIB_VERSION = '2024.1.1-beta-3'
def JACKSON_VERSION = '2.15.2'
def EJML_VERSION = '0.43.1'
def QUICKBUF_VERSION = '1.3.2'

def P5X_VERSION = '0.353.0-beta-3'
def LWJGL_VERSION = '3.3.1'
def IMGUI_VERSION = '1.86.4'
Expand Down Expand Up @@ -87,12 +93,12 @@ dependencies {
implementation wpilibTools.deps.wpilibJava("wpinet")
implementation wpilibTools.deps.wpilibJava("ntcore")

implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: wpi.versions.jacksonVersion.get()
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: wpi.versions.jacksonVersion.get()
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: wpi.versions.jacksonVersion.get()
implementation "us.hebi.quickbuf:quickbuf-runtime:1.3.2"
implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: JACKSON_VERSION
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: JACKSON_VERSION
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: JACKSON_VERSION
implementation group: "us.hebi.quickbuf", name: "quickbuf-runtime", version: QUICKBUF_VERSION

implementation group: "org.ejml", name: "ejml-simple", version: wpi.versions.ejmlVersion.get()
implementation group: "org.ejml", name: "ejml-simple", version: EJML_VERSION
implementation group: "org.joml", name: "joml", version: "1.10.5"
implementation "com.google.code.gson:gson:2.10.1"
}
Expand Down

0 comments on commit 1e956ff

Please sign in to comment.