You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2013/11/07 21:41:40 UTC

svn commit: r1539806 - /uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml

Author: cwiklik
Date: Thu Nov  7 20:41:39 2013
New Revision: 1539806

URL: http://svn.apache.org/r1539806
Log:
UIMA-3417 Modified to turn off building ducc docs by default. To enable use maven profile as follows: mvn install -Pbuild-duccdocs

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml?rev=1539806&r1=1539805&r2=1539806&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-duccdocs/pom.xml Thu Nov  7 20:41:39 2013
@@ -33,8 +33,15 @@
             </releases>
         </pluginRepository>
     </pluginRepositories>
-
-    <build>
+    
+    <!-- By default ducc-duccdocs is not built. To enable the build, first install latex   -->
+    <!-- and run maven as follows: mvn clean install -Pbuild-duccdocs                       -->
+    <!-- The above defines a profile build-duccdocs which triggers the latex plugin defined -->
+    <!-- below to do the actual latex build.                                                -->
+    <profiles>
+    <profile>
+      <id>build-duccdocs</id>
+      <build>
         <plugins>
 
             <plugin>
@@ -94,5 +101,9 @@
                 </executions>
             </plugin>
         </plugins>
-    </build>
+      </build>
+    
+    </profile>
+    </profiles>
+
 </project>