Navigation Menu

Skip to content

Commit

Permalink
added some documentation for the jacoco properties to the README
Browse files Browse the repository at this point in the history
  • Loading branch information
fasseg committed Dec 17, 2013
1 parent c646a09 commit 6c9b547
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -26,5 +26,14 @@ $ cd fcrepo-webapp
$ MAVEN_OPTS="-Xmx512m" mvn jetty:run
```

### Jacoco Properties
The Properties passed to the JVM used by the JaCoCo code coverage plugin can be set using the properties
`jacoco.agent.it.arg` for integration tests and `jacoco.agent.ut.arg` for unit tests:

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


That's it! Your Fedora repository is up and running at: [http://localhost:8080/rest/](http://localhost:8080/rest/)

0 comments on commit 6c9b547

Please sign in to comment.