generated from micronaut-projects/micronaut-project-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove transitive jackson-databind dependency from httpclient-netty (#…
…725) * Remove transitive jackson-databind dependency from httpclient-netty * remove one superfluous exclude
- Loading branch information
Showing
2 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
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
12 changes: 12 additions & 0 deletions
12
...tpclient-netty/src/test/groovy/io/micronaut/oraclecloud/serde/NoJacksonOnClasspath.groovy
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.micronaut.oraclecloud.serde | ||
|
||
import spock.lang.Specification | ||
|
||
class NoJacksonOnClasspath extends Specification { | ||
def 'no jackson on classpath'() { | ||
when: | ||
Class.forName("com.fasterxml.jackson.databind.ObjectMapper") | ||
then: | ||
thrown ClassNotFoundException | ||
} | ||
} |