How to enable assertions in jetty-maven-plugin? By default they are disabled.
1.1 The 'groupId' is org. eclipse. jetty , by default, it runs on port 8080, in root context '/'.
Set environment variable MAVEN_OPTS
to -ea
. Jetty by default runs within Maven process and thus is affected by this setting.
There is also interesting library called Force Assertions which hooks into Java 1.6 compilation process. During compilation all assert cond : detail;
are transparently compiled to if (!cond) throw new Assertion(detail);
blocks, which means assertions will work always no matter what JVM parameters are. Worth to check.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With