Skip to content

Commit 97bdf67

Browse files
authored
Merge pull request #53 from strykeforce/target-list-client
Add support for TargetListTargetData
2 parents 193abab + df3405a commit 97bdf67

File tree

15 files changed

+1190
-937
lines changed

15 files changed

+1190
-937
lines changed

client/.idea/codeStyles/Project.xml

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/.idea/codeStyles/codeStyleConfig.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/.idea/google-java-format.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build.gradle.kts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ repositories {
1313
}
1414

1515
dependencies {
16-
val wpiVersion = "2020.3.2"
16+
val wpiVersion = "2021.2.1"
1717
val slf4jVersion = "1.7.30"
18+
val junitVersion = "5.7.0"
1819
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
19-
implementation("com.squareup.moshi:moshi:1.9.3")
20+
implementation("com.squareup.moshi:moshi:1.11.0")
2021
implementation("edu.wpi.first.ntcore:ntcore-java:$wpiVersion")
2122
implementation("org.slf4j:slf4j-api:$slf4jVersion")
22-
implementation("org.jetbrains:annotations:20.0.0")
23+
implementation("org.jetbrains:annotations:20.1.0")
2324

2425

2526
// Use JUnit Jupiter API for testing.
26-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.2")
27+
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
2728

2829
// Use JUnit Jupiter Engine for testing.
29-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.2")
30+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
3031
testRuntimeOnly("edu.wpi.first.ntcore:ntcore-jni:$wpiVersion:osxx86-64")
3132
testRuntimeOnly("edu.wpi.first.wpiutil:wpiutil-java:$wpiVersion")
3233
testRuntimeOnly("org.slf4j:slf4j-nop:$slf4jVersion")

0 commit comments

Comments
 (0)