Versions Compared

Key

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

...

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.

...