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

Remove un-necessary http mime dependency #13

Closed lbroudoux closed 1 year ago

lbroudoux commented 1 year ago

Reason/Context

Http Mime lib is used just to get a constant for application/json content-type. As we try to avoid embedding libraries in TestContainers (to avoid shading 'em), we must get rid of it.

Description

Remove the dependency, replacing by a simple new string.

Implementation ideas

No response