hello! I’m trying to publish multi module project ...
# gradle
d
hello! I’m trying to publish multi module project and it looks like Gradle automatically created an extra project for what normally would be some maven parent project, e.g. -> https://github.com/ExpediaGroup/graphql-kotlin/blob/master/settings.gradle.kts#L29
Copy code
- project1
- project2
- directory // nothing in this project -> its just for logically grouping project3 and project4 together
  |- project3
  |- project4
Any idea how to instrument Gradle to skip processing
directory
module from the above?
from linked project -> I’m trying to disable
plugins
from being processed
ah its because i specify the projects as
:directory:project3
(https://docs.gradle.org/current/userguide/userguide_single.html#sec:multi_project_builds)