[seam-commits] Seam SVN: r13113 - in modules/jbpm/trunk/docs: src and 3 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Jun 10 11:39:39 EDT 2010


Author: tsurdilovic
Date: 2010-06-10 11:39:38 -0400 (Thu, 10 Jun 2010)
New Revision: 13113

Added:
   modules/jbpm/trunk/docs/README.TXT
   modules/jbpm/trunk/docs/pom.xml
   modules/jbpm/trunk/docs/src/
   modules/jbpm/trunk/docs/src/main/
   modules/jbpm/trunk/docs/src/main/docbook/
   modules/jbpm/trunk/docs/src/main/docbook/en-US/
   modules/jbpm/trunk/docs/src/main/docbook/en-US/jbpm-general.xml
   modules/jbpm/trunk/docs/src/main/docbook/en-US/master.xml
Log:
added docs folders and files.

Added: modules/jbpm/trunk/docs/README.TXT
===================================================================
--- modules/jbpm/trunk/docs/README.TXT	                        (rev 0)
+++ modules/jbpm/trunk/docs/README.TXT	2010-06-10 15:39:38 UTC (rev 13113)
@@ -0,0 +1,4 @@
+To build the Seam jBPM docs run the following command:
+
+mvn clean install
+

Added: modules/jbpm/trunk/docs/pom.xml
===================================================================
--- modules/jbpm/trunk/docs/pom.xml	                        (rev 0)
+++ modules/jbpm/trunk/docs/pom.xml	2010-06-10 15:39:38 UTC (rev 13113)
@@ -0,0 +1,60 @@
+<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/xsd/maven-4.0.0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   
+   <parent>
+      <groupId>org.jboss.seam.jbpm</groupId>
+      <artifactId>seam-jbpm-parent</artifactId>
+      <version>3.0.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
+
+   <groupId>org.jboss.seam.jbpm</groupId>
+   <artifactId>seam-jbpm-reference-guide</artifactId>
+   <version>3.0.0-SNAPSHOT</version>
+   <packaging>jdocbook</packaging>
+   <name>Seam jBPM Reference Guide</name>
+
+   <properties>
+      <pdf.name>jbpm-reference.pdf</pdf.name>
+      <weld.docbook.version>1.1.1-Beta5</weld.docbook.version>
+   </properties>
+
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.jboss.maven.plugins</groupId>
+            <artifactId>maven-jdocbook-plugin</artifactId>
+         </plugin>
+         <!-- Attach docs as a war so dist can retrieve them -->
+         <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>build-helper-maven-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>attach-zip</id>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>attach-artifact</goal>
+                  </goals>
+                  <configuration>
+                     <artifacts>
+                        <artifact>
+                           <file>${project.build.outputDirectory}/${project.artifactId}-${project.version}.war</file>
+                           <type>war</type>
+                        </artifact>
+                     </artifacts>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+      </plugins>
+   </build>
+
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/jbpm/trunk/docs</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/jbpm/trunk/docs</developerConnection>
+      <url>http://fisheye.jboss.org/browse/seam/modules/jbpm/docs</url>
+   </scm>
+   
+</project>
+

Added: modules/jbpm/trunk/docs/src/main/docbook/en-US/jbpm-general.xml
===================================================================
--- modules/jbpm/trunk/docs/src/main/docbook/en-US/jbpm-general.xml	                        (rev 0)
+++ modules/jbpm/trunk/docs/src/main/docbook/en-US/jbpm-general.xml	2010-06-10 15:39:38 UTC (rev 13113)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+
+<chapter id="drools-general">
+  <title>Seam jBPM</title>
+  
+  <para>Seam provides a convenient method of remotely accessing CDI beans from a web page, using AJAX (Asynchronous
+    Javascript and XML). The framework for this functionality is provided with almost no up-front development effort -
+    your beans only require simple annotating to become accessible via AJAX. This chapter describes the steps
+    required to build an AJAX-enabled web page, then goes on to explain the features of the Seam Remoting framework in
+    more detail. </para>
+
+ 
\ No newline at end of file

Added: modules/jbpm/trunk/docs/src/main/docbook/en-US/master.xml
===================================================================
--- modules/jbpm/trunk/docs/src/main/docbook/en-US/master.xml	                        (rev 0)
+++ modules/jbpm/trunk/docs/src/main/docbook/en-US/master.xml	2010-06-10 15:39:38 UTC (rev 13113)
@@ -0,0 +1,10 @@
+<?xml version='1.0' encoding="utf-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+   "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"  [ ]>
+<book lang="en">
+      
+   <toc/>
+   
+   <title>Seam jBPM</title>      
+   <xi:include href="jbpm-general.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+</book>



More information about the seam-commits mailing list