You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2008/05/06 16:02:15 UTC

svn commit: r653779 - /activemq/camel/trunk/tooling/camel-manual/pom.xml

Author: jstrachan
Date: Tue May  6 07:02:13 2008
New Revision: 653779

URL: http://svn.apache.org/viewvc?rev=653779&view=rev
Log:
ensure the manual pdf and html are deployed into the mvn repo

Modified:
    activemq/camel/trunk/tooling/camel-manual/pom.xml

Modified: activemq/camel/trunk/tooling/camel-manual/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/tooling/camel-manual/pom.xml?rev=653779&r1=653778&r2=653779&view=diff
==============================================================================
--- activemq/camel/trunk/tooling/camel-manual/pom.xml (original)
+++ activemq/camel/trunk/tooling/camel-manual/pom.xml Tue May  6 07:02:13 2008
@@ -60,7 +60,33 @@
               </style>
           ]]></head>
         </configuration>
-      </plugin>      
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-artifacts</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+            <configuration>
+              <artifacts>
+                <artifact>
+                  <file>${project.build.directory}/site/manual/camel-manual-${project.version}.pdf</file>
+                  <type>pdf</type>
+                </artifact>
+                <artifact>
+                  <file>${project.build.directory}/site/manual/camel-manual-${project.version}.html</file>
+                  <type>html</type>
+                </artifact>
+              </artifacts>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 </project>