Re: How do I skip site-generation for modules?

2018-11-11 Thread Hervé BOUTEMY
for that, you can copy content to the generatedSiteDirectory [1]: either $generatedSiteDirectory/resources if you already have html content, or $generatedSiteDirectory/markdown if the generated content is in Markdown, and so on another option that I sometimes use is to include generated content

Re: How do I skip site-generation for modules?

2018-11-08 Thread Manfred Moser
You can use the skip parameter in the individual modules.. https://maven.apache.org/plugins/maven-site-plugin/site-mojo.html#skip That said ... I think since you want some resources from the you are better off NOT skipping but instead just making it work for the multi module setup. You just nee

Re: How do I skip site-generation for modules?

2018-11-08 Thread jieryn
configure m-site-p:site:skip via property, then in parent set to false, and children set to true https://maven.apache.org/plugins/maven-site-plugin/site-mojo.html#skip or create a separate module called docs or site or something, and only produce the site in that module On Thu, Nov 8, 2018 at 2:1

Re: How do I skip site-generation for modules?

2018-11-08 Thread Russell Gold
And at the same time, I would like to copy to the site directory some files that were generated during the build (and are now in one of the module jars). > On Nov 8, 2018, at 1:31 PM, Russell Gold wrote: > > I want to generate a site for my multi-module project only from the > top-level. How

How do I skip site-generation for modules?

2018-11-08 Thread Russell Gold
I want to generate a site for my multi-module project only from the top-level. How do I tell maven to skip running the site plugin on each module? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional command