[jbpm-commits] JBoss JBPM SVN: r3035 - in jbpm4/trunk/modules: devguide and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Nov 21 10:46:39 EST 2008


Author: tom.baeyens at jboss.com
Date: 2008-11-21 10:46:39 -0500 (Fri, 21 Nov 2008)
New Revision: 3035

Added:
   jbpm4/trunk/modules/devguide/
   jbpm4/trunk/modules/devguide/pom.xml
Log:
adding devguide

Added: jbpm4/trunk/modules/devguide/pom.xml
===================================================================
--- jbpm4/trunk/modules/devguide/pom.xml	                        (rev 0)
+++ jbpm4/trunk/modules/devguide/pom.xml	2008-11-21 15:46:39 UTC (rev 3035)
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+  <!-- ====================================================================== -->
+  <!--                                                                        -->
+  <!--  JBoss, the OpenSource J2EE webOS                                      -->
+  <!--                                                                        -->
+  <!--  Distributable under LGPL license.                                     -->
+  <!--  See terms of license at http://www.gnu.org.                           -->
+  <!--                                                                        -->
+  <!-- ====================================================================== -->
+
+  <!-- $Id: pom.xml 2693 2008-10-31 09:12:32Z tom.baeyens at jboss.com $ -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <name>jBPM 4 - Developers Guide</name>
+  <groupId>org.jbpm.jbpm4</groupId>
+  <artifactId>jbpm-devguide</artifactId>
+  <packaging>pom</packaging>
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jbpm.jbpm4</groupId>
+    <artifactId>jbpm</artifactId>
+    <version>4.0.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+
+  <dependencies>
+    <!-- 
+    <dependency>
+      <groupId>org.jbpm.jbpm4</groupId>
+      <artifactId>jbpm-pvm</artifactId>
+      <version>${version}</version>
+    </dependency>
+    -->
+  </dependencies>
+
+  <build>
+    <!-- ### PLUGINS ###################################################### -->
+    <plugins>
+
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jdocbook-plugin</artifactId>
+        <version>2.1.2</version>
+        <extensions>true</extensions>
+
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>resources</goal>
+              <goal>generate</goal>
+            </goals>
+          </execution>
+         </executions>
+
+        <dependencies>
+          <dependency>
+            <groupId>org.jboss</groupId>
+            <artifactId>jbossorg-docbook-xslt</artifactId>
+            <version>1.1.0</version>
+          </dependency>
+          <dependency>
+            <groupId>org.jbpm.jbpm4</groupId>
+            <artifactId>docbook-style</artifactId>
+            <version>1.0.0</version>
+            <type>jdocbook-style</type>
+          </dependency>
+        </dependencies>
+
+        <configuration>
+          <sourceDocumentName>master.xml</sourceDocumentName>
+          <masterTranslation>en</masterTranslation>
+          <imageResource>
+            <directory>${basedir}/src/main/docbook/en</directory>
+            <includes>
+              <include>images/*.png</include>
+            </includes>
+          </imageResource>
+          <formats>
+            <format>
+              <formatName>html_single</formatName>
+              <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+              <finalName>index.html</finalName>
+            </format>
+          </formats>
+        </configuration>
+
+      </plugin>
+
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file




More information about the jbpm-commits mailing list