Slackbot
05/24/2023, 1:23 PMMartin
05/24/2023, 1:30 PMapply(from = repositories.gradle.kts)
is the easiest way to do this without going circular dependencies all the way down. One example hereVinay Nagaraj
05/24/2023, 1:33 PMMartin
05/24/2023, 1:33 PMMartin
05/24/2023, 1:33 PMVampire
05/24/2023, 1:34 PMpluginManagement { repositories { ... } }
or dependendencyManagement { repositories { ... } }
?Vampire
05/24/2023, 1:34 PMMartin
05/24/2023, 1:35 PMpluginManagement
too in KTS (but maybe not in Groovy)Vinay Nagaraj
05/24/2023, 1:37 PMdependendencyManagement
(assuming that will make these plugins available to all subprojects), and also as a repository in dependencyManagement
for all my subprojects.Vampire
05/24/2023, 1:40 PMincludeBuild
that build within pluginManagement { ... }
.Vinay Nagaraj
05/24/2023, 1:52 PMproject
dependencies to the buildscript classpath.Vinay Nagaraj
05/24/2023, 1:53 PMVampire
05/24/2023, 1:55 PMVinay Nagaraj
05/24/2023, 2:00 PMpluginManagement
, would it automatically get added to buildscript classpath?Vinay Nagaraj
05/24/2023, 2:01 PMVampire
05/24/2023, 2:01 PMVampire
05/24/2023, 2:02 PM