You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2013/01/10 15:48:02 UTC

svn commit: r1431396 - in /uima/sandbox/TextMarker/trunk: README uimaj-textmarker-eclipse-feature/

Author: pkluegl
Date: Thu Jan 10 14:48:02 2013
New Revision: 1431396

URL: http://svn.apache.org/viewvc?rev=1431396&view=rev
Log:
UIMA-2513
- added Pablo Duboue's advice about uimaFIT JCasGenPomFriendly to README (until there is a site with information about building TextMarker) 

Modified:
    uima/sandbox/TextMarker/trunk/README
    uima/sandbox/TextMarker/trunk/uimaj-textmarker-eclipse-feature/   (props changed)

Modified: uima/sandbox/TextMarker/trunk/README
URL: http://svn.apache.org/viewvc/uima/sandbox/TextMarker/trunk/README?rev=1431396&r1=1431395&r2=1431396&view=diff
==============================================================================
--- uima/sandbox/TextMarker/trunk/README (original)
+++ uima/sandbox/TextMarker/trunk/README Thu Jan 10 14:48:02 2013
@@ -17,3 +17,25 @@ change the command to 
    mvn clean install -Papache-release
    
 For more details, please see http://uima.apache.org/building-uima.html   
+
+-------------------------------------
+
+If you use the uimaFIT JCasGenPomFriendly in Maven and want to use TextMarker 
+as a standalone annotator you have to exclude the generated TextMarker basic 
+type files from the build, e.g., by adding:
+
+   <plugin>
+    <groupId>org.apache.maven.plugins</groupId>
+    <artifactId>maven-compiler-plugin</artifactId>
+    <version>3.0</version>
+    <configuration>
+        <source>1.6</source>
+        <target>1.6</target>
+         <excludes>
+             <exclude>org/apache/uima/textmarker/type/*.java</exclude>
+         </excludes>
+    </configuration>
+   </plugin> 
+
+
+

Propchange: uima/sandbox/TextMarker/trunk/uimaj-textmarker-eclipse-feature/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Jan 10 14:48:02 2013
@@ -2,3 +2,4 @@
 .classpath
 .project
 target
+issuesFixed