Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removing remaining references to PermGen
  • Loading branch information
ajs6f committed Aug 12, 2015
1 parent 54cc3a1 commit 3f4e002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -45,7 +45,7 @@ If you have problems building fcrepo4 with the above settings, you may need to a
options to the JaCoCo code coverage plugin:

```bash
$ MAVEN_OPTS="-Xmx1024m" mvn -Djacoco.agent.it.arg="-XX:MaxPermSize=1024m -Xmx1024m" -Djacoco.agent.ut.arg="-XX:MaxPermSize=256m -Xmx1024m" clean install
$ MAVEN_OPTS="-Xmx1024m" mvn -Djacoco.agent.it.arg="-Xmx1024m" -Djacoco.agent.ut.arg="-Xmx1024m" clean install
```


Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -744,7 +744,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<argLine>-Xms512m -Xmx1024m -XX:MaxPermSize=512m</argLine>
<argLine>-Xms512m -Xmx1024m</argLine>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -985,7 +985,7 @@
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<argLine>-XX:MaxPermSize=128m ${jacoco.agent.it.arg}</argLine>
<argLine>${jacoco.agent.it.arg}</argLine>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 3f4e002

Please sign in to comment.