Re: Generating xdoc content to be included into site

2017-02-22 Thread Maxim Solodovnik
Hello Hervé, Thanks for your detailed reply :) Here is the current site: http://openmeetings.apache.org Sites for the sub-projects are: http://openmeetings.apache.org/openmeetings-util/ http://openmeetings.apache.org/openmeetings-web/ some others. Your suggestion with works very well,

Re: Generating xdoc content to be included into site

2017-02-16 Thread Hervé BOUTEMY
Hi Maxim, Sorry, was in vacations and lost the conversation... but let's continue First, you gave great links to source code: do you have a published result somewhere? (= a demo of the result you want, even if currently the code to have such result is too complex and you're looking to make it

Re: Generating xdoc content to be included into site

2017-02-05 Thread Maxim Solodovnik
Hello Hervé, Thanks for the quick reply, Few words about project structure: project root: https://github.com/apache/openmeetings/tree/3.2.x main site.xml https://github.com/apache/openmeetings/blob/3.2.x/src/site/site.xml contains skin definitions and links being displayed by all modules

Re: Generating xdoc content to be included into site

2017-02-03 Thread Hervé BOUTEMY
in all the cases I know of , since there is site.xml inheritance for shared parts, site.xml for modules are not necessary. Can you share the "standard" site.xml? Regards, Hervé Le vendredi 3 février 2017, 16:31:14 CET Maxim Solodovnik a écrit : > Actually I have multi-module project > I have

Re: Generating xdoc content to be included into site

2017-02-03 Thread Maxim Solodovnik
Actually I have multi-module project I have "main site" with some how-tos, announces etc. and "standard" sites for all sub-modules: info, rat-report, javadocs, dependencies etc. Currently I have exactly the same site.xml for all these "standard" sites, and I don't really like to have 7 copies of

Re: Generating xdoc content to be included into site

2017-02-03 Thread Hervé BOUTEMY
you're the first one I see who does that: I never imagined to support this scenario Then I'd say: it's by design :) I don't know if adding this feature would be hard or not Regards, Hervé Le jeudi 2 février 2017, 01:02:33 CET Maxim Solodovnik a écrit : > One additional question, > > I'm

Re: Generating xdoc content to be included into site

2017-02-02 Thread Maxim Solodovnik
I have tried to to set siteDirectory to be target/generated-site But it doesn't work very well on my multi-module project On Thu, Feb 2, 2017 at 1:02 AM, Maxim Solodovnik wrote: > One additional question, > > I'm generating site.xml during pre-site phase and storing it

Re: Generating xdoc content to be included into site

2017-02-01 Thread Maxim Solodovnik
One additional question, I'm generating site.xml during pre-site phase and storing it into target/generated-site/site.xml But it seems to be not used Is it by design? Or maybe I'm doing something wrong? On Wed, Feb 1, 2017 at 8:16 PM, Maxim Solodovnik wrote: > Thanks a

Re: Generating xdoc content to be included into site

2017-02-01 Thread Maxim Solodovnik
Thanks a lot! Works as expected! On Wed, Feb 1, 2017 at 7:03 PM, Lukas Theussl wrote: > > Heya, > > Try ${project.build.directory}/generated-site or change the > generatedSiteDirectory parameter, see > >

Re: Generating xdoc content to be included into site

2017-02-01 Thread Lukas Theussl
Heya, Try ${project.build.directory}/generated-site or change the generatedSiteDirectory parameter, see https://maven.apache.org/plugins/maven-site-plugin/site-mojo.html#generatedSiteDirectory HTH, -Lukas Am 01.02.2017 um 11:49 schrieb Maxim Solodovnik: Hello Karl, Thanks a lot for the

Re: Generating xdoc content to be included into site

2017-02-01 Thread Maxim Solodovnik
Hello Karl, Thanks a lot for the quick response pre-site phase is being called if I'm using "mvn site" but XML files from target/generated-sources/site/xdoc/ are not being used while site generation ... Should it be generated to the different folder? On Wed, Feb 1, 2017 at 3:52 PM, Karl Heinz

Re: Generating xdoc content to be included into site

2017-02-01 Thread Karl Heinz Marbaise
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