From 348f5839eb27cc066bca0da8b26996dc54ec0d12 Mon Sep 17 00:00:00 2001 From: Philipp Schirmer Date: Fri, 19 Jul 2024 11:06:54 +0200 Subject: [PATCH] Remove kassava dependency --- build.gradle.kts | 6 ++++++ settings.gradle | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2b8dbdb..a134a96 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,6 +8,12 @@ plugins { id("com.gradle.plugin-publish") version "1.2.1" apply false } +buildscript { + configurations.all { + exclude(group = "au.com.console", module = "kassava") + } +} + allprojects { repositories { maven(url = "https://plugins.gradle.org/m2/") diff --git a/settings.gradle b/settings.gradle index f75e11a..e517796 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,12 +4,6 @@ pluginManagement { } } -buildscript { - configurations.all { - exclude group: 'au.com.console', module: 'kassava' - } -} - rootProject.name = 'gradle-plugins' include 'sonar', 'sonatype', 'release'