Thomas Oddsund
05/13/2019, 8:57 AMThomas Oddsund
05/13/2019, 8:57 AMroot/
- client/
- server/
The plugin is then applied using the plugins dsl to the root project, e.g. like this;
plugins {
id("com.example.plugin") version "1.0"
}
From there, I can apply the "com.example.plugin.{client|server}" to the subprojects using the plugins dsl - but how can I apply f.ex. the server plugin to the root project? Should I publish three different plugins, or is here some way? Ideally, I would be able to do this in the root project;
plugins {
id("com.example.plugin") version "1.0"
id("com.example.plugin.server")
}
Or similar using the apply dsl.wakingrufus
05/13/2019, 3:47 PMwakingrufus
05/13/2019, 3:47 PMwakingrufus
05/13/2019, 3:47 PM