views:

25

answers:

1

Hi folks! In order to deliver an all-in-one Jar for our project, we are wondering if it is possible to include the project's generated site (generated via the site plugin) into the generated project's package? The idea behind this is very simple, we have a project named "sample" that demonstrates the usage of our API and we want to give the user documentation on the API and its usage in a single bundle. Is it possible using Maven to create such a Jar?

Thanks in advance!

+3  A: 

Using site:jar and then the assembly plugin to create a bundle of everthing should be possible.

Pascal Thivent
Yep this could be an interesting solution.I am going to try it.
reef