Skip to content

Commit

Permalink
Update example plugins to use project dependencies
Browse files Browse the repository at this point in the history
Avoids the problem that NT and CS plugins aren't published (wpilibsuite#696)�
  • Loading branch information
sciencewhiz committed Nov 28, 2022
1 parent d00d53e commit bf46c7b
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 bf46c7b

Please sign in to comment.