Skip to content

Commit

Permalink
switch to implementation from maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
linglejack06 committed Dec 11, 2024
1 parent cd3bd70 commit 2fefea6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ plugins {

rootProject.name = 'coppercore'

include('geometry', 'wpilib_interface', 'math', 'controls', "parameter_tools", 'vision', 'monitors')
include(':geometry', ':wpilib_interface', ':math', ':controls', ":parameter_tools", ':vision', ':monitors')
6 changes: 3 additions & 3 deletions wpilib_interface/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ task(replayWatch, type: JavaExec) {
// Defining my dependencies. In this case, WPILib (+ friends), and vendor libraries.
// Also defines JUnit 4.
dependencies {
implementation "io.github.team401.coppercore:monitors:2025.0.0-beta"
implementation "io.github.team401.coppercore:math:2025.0.0-beta"

annotationProcessor wpi.java.deps.wpilibAnnotations()
implementation wpi.java.deps.wpilib()
implementation wpi.java.vendor.java()
Expand All @@ -114,9 +117,6 @@ dependencies {
def akitJson = new groovy.json.JsonSlurper().parseText(new File(projectDir.getAbsolutePath() + "/vendordeps/AdvantageKit.json").text)
annotationProcessor "org.littletonrobotics.akit:akit-autolog:$akitJson.version"

implementation project(":monitors")
implementation project(":math")

implementation "com.googlecode.json-simple:json-simple:1.1.1"
}

Expand Down

0 comments on commit 2fefea6

Please sign in to comment.