From bf46c7b504fcda50e3c9f954d38495b4307d7122 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 27 Nov 2022 20:58:38 -0800 Subject: [PATCH] Update example plugins to use project dependencies Avoids the problem that NT and CS plugins aren't published (#696) --- .../custom-data-and-widget/custom-data-and-widget.gradle | 2 +- example-plugins/custom-theme/custom-theme.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example-plugins/custom-data-and-widget/custom-data-and-widget.gradle b/example-plugins/custom-data-and-widget/custom-data-and-widget.gradle index 9ee1b83e7..12a79d0e9 100644 --- a/example-plugins/custom-data-and-widget/custom-data-and-widget.gradle +++ b/example-plugins/custom-data-and-widget/custom-data-and-widget.gradle @@ -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) { diff --git a/example-plugins/custom-theme/custom-theme.gradle b/example-plugins/custom-theme/custom-theme.gradle index 9ee1b83e7..12a79d0e9 100644 --- a/example-plugins/custom-theme/custom-theme.gradle +++ b/example-plugins/custom-theme/custom-theme.gradle @@ -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) {