Hi. > What's the docbook plugin support like in Maven 2, Carlos? > > I can probably set something up to generate the docs separately if it's > not available yet.
This is what I use: http://www.agilejava.com/docbkx/ Here's an example: <plugin> <groupId>com.agilejava.docbkx</groupId> <artifactId>docbkx-maven-plugin</artifactId> <version>1.69.1.7</version> <executions> <execution> <goals> <goal>generate-html</goal> <goal>generate-pdf</goal> </goals> <phase>pre-site</phase> </execution> </executions> <dependencies> <dependency> <groupId>org.docbook</groupId> <artifactId>docbook-xml</artifactId> <version>4.4</version> <scope>runtime</scope> </dependency> </dependencies> <configuration> <sourceDirectory>${basedir}/src/reference</sourceDirectory> <targetDirectory>${basedir}/target/site/reference</targetDirectory> </configuration> </plugin> Bye. /lexi. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Home: http://acegisecurity.org Acegisecurity-developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
