Hi, On 01/02/17 06:52, Maxim Solodovnik wrote:
Hello All,I wonder is it possible to generate content for maven site plugin? We are using xdoc for our site. I would like to generate source using xml-maven-plugin. Right now I do it in generate-sources phase and polluting src/site/xdoc/ folder I tried to change the process as follows: 1) generate site source in pre-site phase 2) put generated content into ${project.build.directory}/generated-sources/site/xdoc/ unfortunately it doesn't work this way :( It seems pre-site phase is not being called during mvn site:site :( What am I doing wrong?
If you call site:site you call the goal of the plugin and NOT the life cycle. You need to call mvn site instead than pre-site and site life cycle phases will run...
Kind regards Karl Heinz Marbaise --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
