Timur Abdyraev
07/16/2024, 12:28 PMincludeBuild. I have internal plugins in build-logic and public plugins ( ones I want to publish ), the problem is that if I apply gradle-publish plugin to my build-logic, it is going to publish all the plugins to Gradle Plugin Portal ( because all of the plugins will have their pluginMarkers ). In order to avoid that I have to create separate module just for those two plugins. I know one solution and this solution is to still have just one module and publish all of them but Gradle Plugin Portal team will reject internal plugins due to lack of description and 0 usability of plugins, because they are internal and just apply some common libraries and plugins themselves. I would be glad if you provide me with another solution. Here is the GitHub repository to check this out https://github.com/Timbermir/clean-wizard/tree/2.0.0Vampire
07/16/2024, 12:37 PMTimur Abdyraev
07/16/2024, 1:34 PMTimur Abdyraev
07/16/2024, 1:35 PMTimur Abdyraev
07/16/2024, 1:35 PMVampire
07/16/2024, 1:39 PMTimur Abdyraev
07/16/2024, 3:27 PMTimur Abdyraev
07/16/2024, 3:27 PMVampire
07/16/2024, 3:33 PMTimur Abdyraev
07/16/2024, 4:08 PMimplementation(project("build-logic:config")) doesn't work for me .Thomas Broyer
07/16/2024, 4:17 PMimplementation("project.group:config")? (where project.group is the group value configured in that included build)
https://docs.gradle.org/current/userguide/composite_builds.html#included_build_declaring_substitutionsTimur Abdyraev
07/17/2024, 5:02 PM