You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by al...@apache.org on 2006/12/07 15:55:55 UTC

svn commit: r483474 - in /incubator/uima/uimaj/trunk/uimaj-distr: pom.xml src/main/assembly/bin.xml

Author: alally
Date: Thu Dec  7 06:55:54 2006
New Revision: 483474

URL: http://svn.apache.org/viewvc?view=rev&rev=483474
Log:
UIMA-6: the SDK assembly now called the uima-docbooks build and
then includes both the PDF and single-page HTML versions in the
assembly.

Note the uima-docbooks/build.xml has had the build for the
"reference" book commented out since that book hasn't been ported
to xdoc yet.  This needs to be uncommented once that is finished.

https://issues.apache.org/jira/browse/UIMA-6

Modified:
    incubator/uima/uimaj/trunk/uimaj-distr/pom.xml
    incubator/uima/uimaj/trunk/uimaj-distr/src/main/assembly/bin.xml

Modified: incubator/uima/uimaj/trunk/uimaj-distr/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-distr/pom.xml?view=diff&rev=483474&r1=483473&r2=483474
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-distr/pom.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj-distr/pom.xml Thu Dec  7 06:55:54 2006
@@ -146,6 +146,23 @@
 					</execution>
 				</executions>
 			</plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <configuration>
+              <tasks>
+                <!-- Build documentation -->
+                <ant dir="../uima-docbooks"/>                
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
 		</plugins>
 	</build>	
 </project>

Modified: incubator/uima/uimaj/trunk/uimaj-distr/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-distr/src/main/assembly/bin.xml?view=diff&rev=483474&r1=483473&r2=483474
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-distr/src/main/assembly/bin.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj-distr/src/main/assembly/bin.xml Thu Dec  7 06:55:54 2006
@@ -91,6 +91,7 @@
 		</dependencySet>
 	</dependencySets>
 	
+  <!-- Add other files - scripts, documentation, examples -->
 	<fileSets>
 		<fileSet>
 			<directory>src/main/scripts</directory>
@@ -104,6 +105,17 @@
 			<directory>target/site/apidocs</directory>
 			<outputDirectory>/docs/api</outputDirectory>
 		</fileSet>
+    <fileSet>
+      <directory>../uima-docbooks/target</directory>      
+      <outputDirectory>/docs</outputDirectory>
+      <includes>
+        <include>images/**</include>
+        <include>overview_and_setup/overview_and_setup.*</include>
+        <include>tutorials_and_users_guides/tutorials_and_users_guides.*</include>
+        <include>tools/tools.*</include>
+        <include>reference/reference.*</include>
+      </includes>
+    </fileSet>    
 		<fileSet>
 			<directory>../uimaj-examples/src/main/java</directory>
 			<outputDirectory>/examples/src</outputDirectory>