microcks / microcks-testcontainers-java

Java lib for Testcontainers that enables embedding Microcks into your JUnit tests with lightweight, throwaway instance thanks to containers.
https://microcks.io
Apache License 2.0
19 stars 4 forks source link

Retrofit to Java 8 #12

Closed lbroudoux closed 1 year ago

lbroudoux commented 1 year ago

Reason/Context

As of today, this module is compiled using Java 11 compatibility level. However, Java 8 is still strong and TestContainers official modules are required to be compatible with the Java 8 bytecode.

Description

We have to remove Java 11-specific code features (typically the new HttpClient) and port them to existing ones in Java 8. We also have to change the Maven compilation options for this module.

Implementation ideas

No response