Skip to content

Commit

Permalink
Update example plugins to use project dependencies (#743)
Browse files Browse the repository at this point in the history
Avoids the problem that NT and CS plugins aren't published (#696)
  • Loading branch information
sciencewhiz authored Nov 28, 2022
1 parent 56ac22e commit 27a49b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

dependencies {
compileOnly group: "edu.wpi.first.shuffleboard", name: "api", version: "2020.3.2"
compileOnly project(":api")
}

tasks.register("installPlugin", Copy) {
Expand Down
2 changes: 1 addition & 1 deletion example-plugins/custom-theme/custom-theme.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

dependencies {
compileOnly group: "edu.wpi.first.shuffleboard", name: "api", version: "2020.3.2"
compileOnly project(":api")
}

tasks.register("installPlugin", Copy) {
Expand Down

0 comments on commit 27a49b7

Please sign in to comment.