hello! whats the proper way to combine custom `mav...
# gradle
d
hello! whats the proper way to combine custom
maven-publish
pom.xml
and the one that is generated by
java-gradle-plugin
?, e.g. I got multi module project where I create
pom.xml
for all subprojects so it includes same license info, etc (https://github.com/dariuszkuc/graphql-kotlin/blob/plugin/build.gradle.kts#L132). It looks like
java-gradle-plugin
creates its own (very limited one) and ignores the generated pom (https://github.com/dariuszkuc/graphql-kotlin/blob/plugin/plugins/graphql-kotlin-gradle-plugin/build.gradle.kts#L11). Any suggestions? Thanks!
so currently I end up with •
mavenJava
publication (includes
pom.xml
and
module.json
) from root
build.gradle.kts
<- pom has the licensing information, jar, sources and javadoc •
pluginMaven
publication (includes
pom.xml
and
module.json
) - I guess it is generated by
java-radle-plugin
? •
<pluginName>PluginMarkerMaven
publication (includes only
pom.xml
) generated from?