You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/09/22 20:56:38 UTC

svn commit: r817768 [2/2] - in /incubator/uima/sandbox/trunk/Tagger: ./ docs/ docs/html/ docs/html/hmmTaggerUsersGuide/ docs/html/hmmTaggerUsersGuide/css/ docs/html/images/ docs/html/images/callouts/ docs/html/images/hmmTaggerUsersGuide/ docs/pdf/

Added: incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.svg
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.svg?rev=817768&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.svg (added)
+++ incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.svg Tue Sep 22 18:56:30 2009
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
+<!DOCTYPE svg [
+	<!ENTITY st0 "fill:#000000;stroke:#FFFFFF;stroke-width:7.9139;stroke-linejoin:round;">
+	<!ENTITY st1 "fill-rule:nonzero;clip-rule:nonzero;fill:#FFFFFF;stroke:#000000;stroke-miterlimit:4;">
+	<!ENTITY st2 "fill:none;stroke:none;">
+	<!ENTITY st3 "fill:#000000;">
+	<!ENTITY st4 "fill-rule:evenodd;clip-rule:evenodd;stroke:none;">
+	<!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
+]>
+<svg  width="48pt" height="48pt" viewBox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
+	<g id="Layer_x0020_4" style="&st1;">
+		<g style="&st4;">
+			<path style="&st0;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/>
+			<path style="&st3;" d="M16.4,42.3L5.7,31.6V16.4L16.4,5.7h15.2l10.7,10.7v15.2L31.6,42.3H16.4z"/>
+			<path d="M11.7,17.7l18.7,18.7l5.9-5.9L17.6,11.7l-5.9,5.9z"/>
+			<path d="M11.7,30.5l5.9,5.9l18.7-18.7l-5.9-5.9L11.7,30.5z"/>
+		</g>
+	</g>
+	<g id="crop_x0020_marks" style="&st5;">
+		<path style="&st2;" d="M48,48H0V0h48v48z"/>
+	</g>
+</svg>

Added: incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.tif
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.tif?rev=817768&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/sandbox/trunk/Tagger/docs/html/images/warning.tif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/uima/sandbox/trunk/Tagger/docs/pdf/hmmTaggerUsersGuide.pdf
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Tagger/docs/pdf/hmmTaggerUsersGuide.pdf?rev=817768&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/uima/sandbox/trunk/Tagger/docs/pdf/hmmTaggerUsersGuide.pdf
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/uima/sandbox/trunk/Tagger/pom.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Tagger/pom.xml?rev=817768&r1=817767&r2=817768&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/Tagger/pom.xml (original)
+++ incubator/uima/sandbox/trunk/Tagger/pom.xml Tue Sep 22 18:56:30 2009
@@ -29,9 +29,9 @@
   
   <parent>
     <groupId>org.apache.uima</groupId>
-    <artifactId>SandboxDistr</artifactId>
+    <artifactId>SandboxDistr-pearBuilder</artifactId>
     <version>2.3.0-incubating-SNAPSHOT</version> <!-- this comment is a flag for changeVersion -->
-    <relativePath>../SandboxDistr</relativePath>
+    <relativePath>../SandboxDistr/pear-builder-pom</relativePath>
   </parent>
   
 	<dependencies>
@@ -55,18 +55,26 @@
       <scope>test</scope>
 		</dependency>
 	</dependencies>
+  
   <build>
-    <finalName>uima-an-tagger</finalName>
+    <finalName>uima-an-tagger</finalName>
+    
+    <!-- don't use resources from normal spot, and
+         use resources from proj/resources -->
     <resources>
       <resource>
         <directory>resources</directory>
       </resource>
     </resources>
+    
+    <!-- don't use test resources from normal spot, and
+         use resources from proj/desc -->
     <testResources>
       <testResource>
         <directory>desc</directory>
       </testResource>
-    </testResources>
+    </testResources>
+    
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -74,8 +82,21 @@
         <configuration>
           <argLine>-Xmx500M</argLine>
         </configuration>
-      </plugin>
-      <plugin>
+      </plugin>
+  
+      <!-- build pear plugin, most settings inherited from parent POM -->      
+      <plugin>
+        <groupId>org.apache.uima</groupId>
+        <artifactId>PearPackagingMavenPlugin</artifactId>
+        <executions><execution>
+          <id>buildPear</id>
+          <configuration>
+            <mainComponentDesc>desc/HmmTagger.xml</mainComponentDesc> 
+          </configuration>
+        </execution></executions>
+      </plugin>              
+      
+      <!--plugin>
         <groupId>org.apache.uima</groupId>
         <artifactId>PearPackagingMavenPlugin</artifactId>
         <extensions>true</extensions>
@@ -92,8 +113,8 @@
             </goals>
           </execution>
         </executions>
-      </plugin>
+      </plugin-->
     </plugins>
   </build>
-  </project>
+</project>