Created
August 1, 2014 19:17
-
-
Save atishn/524fb384bdf059241ca6 to your computer and use it in GitHub Desktop.
Java Melody Maven Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>net.bull.javamelody</groupId> | |
<artifactId>javamelody-core</artifactId> | |
<version>1.47.0</version> | |
</dependency> | |
<!-- itext, option to add PDF export --> | |
<dependency> | |
<groupId>com.lowagie</groupId> | |
<artifactId>itext</artifactId> | |
<version>2.1.7</version> | |
<exclusions> | |
<exclusion> | |
<artifactId>bcmail-jdk14</artifactId> | |
<groupId>bouncycastle</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>bcprov-jdk14</artifactId> | |
<groupId>bouncycastle</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>bctsp-jdk14</artifactId> | |
<groupId>bouncycastle</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment