Author: wsmoak
Date: Mon Jun 29 22:00:50 2009
New Revision: 789462
URL: http://svn.apache.org/viewvc?rev=789462&view=rev
Log:
[CONTINUUM-2101] Move pdf plugin into default build now that it has been released. Now 'mvn
site' will generate the pdf along with the html website.
Modified:
continuum/trunk/continuum-docs/pom.xml
Modified: continuum/trunk/continuum-docs/pom.xml
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-docs/pom.xml?rev=789462&r1=789461&r2=789462&view=diff
==============================================================================
--- continuum/trunk/continuum-docs/pom.xml (original)
+++ continuum/trunk/continuum-docs/pom.xml Mon Jun 29 22:00:50 2009
@@ -44,6 +44,23 @@
<template>continuum-site.vm</template>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-pdf-plugin</artifactId>
+ <!-- TODO: remove version once it is inherited from Continuum parent pom version
3 -->
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <id>site-pdf</id>
+ <phase>site</phase>
+ <goals>
+ <goal>pdf</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<reporting>
@@ -73,28 +90,4 @@
</plugin>
</plugins>
</reporting>
- <profiles>
- <profile>
- <id>pdf</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-pdf-plugin</artifactId>
- <executions>
- <execution>
- <id>site-pdf</id>
- <phase>site</phase>
- <goals>
- <goal>pdf</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>
|