Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
increase memory during build
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitay Joffe committed Jul 14, 2013
1 parent 65f826e commit 834b2a9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pom.xml
Expand Up @@ -123,6 +123,7 @@ under the License.
<dep.plugin.surefire.version>2.15</dep.plugin.surefire.version>
<dep.plugin.source.version>2.2.1</dep.plugin.source.version>

<jvmsize>2048m</jvmsize>
<repo.name>hive-io-experimental</repo.name>
<root.dir>.</root.dir>
</properties>
Expand Down Expand Up @@ -265,6 +266,7 @@ under the License.
<source>1.6</source>
<target>1.6</target>
<showWarnings>false</showWarnings>
<maxmem>${jvmsize}</maxmem>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -310,6 +312,9 @@ under the License.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${dep.plugin.javadoc.version}</version>
<configuration>
<maxmemory>${jvmsize}</maxmemory>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -451,6 +456,9 @@ under the License.
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${dep.plugin.findbugs.version}</version>
<configuration>
<jvmargs>-Xmx${jvmsize}</jvmargs>
</configuration>
</plugin>
</plugins>
</reporting>
Expand Down

0 comments on commit 834b2a9

Please sign in to comment.