Melih Gunal
Melih Gunal
**Workaround:** Using the workaround reported in http://akhikhl.github.io/gretty-doc/Code-coverage-support.html ``` gretty { jacocoEnabled false } ``` which was previously fixed in https://github.com/akhikhl/gretty/pull/339 for an earlier version. When gradle build task is called...
### Test Setup Code (Before): The following setup code worked with the previous dependencies: ```java @BeforeAll static void setup() { Security.setProperty("ssl.SocketFactory.provider", DummySSLSocketFactory.class.getName()); mailServer = new GreenMail(new ServerSetup[]{ServerSetupTest.SMTP, ServerSetupTest.SMTPS}); mailServer.start(); mailServer.setUser(USER_EMAIL_ADDRESS,...