Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Specifically when you compile the system and run the tests you will have to change
the pom.xml file in uima-core to be:<build>

Code Block

<build>
   <finalName>uima-core</finalName>

...


    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>

...


            <artifactId>maven-surefire-plugin</artifactId>

...


            <configuration>
               <argLine>-Xmx1200M</argLine>

...


            </configuration>

...


       </plugin>

...


    </plugins>

...


</build>

Note that the following line

<argLine>-Xmx1200M</argLine>

the Xmx parameter has been increased.

...

@if "%UIMA_JVM_OPTS%"=="" set UIMA_JVM_OPTS=-Xms128M -Xmx1600M

Let me know if you have any questions on this
dan@danmccreary.com