-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
depend on json core not serde (#512)
* use kotlin DSL * no need to import micronaut-logging catalogue * depend on json.core not serde * annotate with @requires(JsonMapper.class)
- Loading branch information
Showing
4 changed files
with
42 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
import org.gradle.api.tasks.testing.logging.TestExceptionFormat | ||
|
||
plugins { | ||
id("io.micronaut.build.internal.rabbitmq-module") | ||
} | ||
|
||
dependencies { | ||
compileOnly(libs.jsr305) | ||
|
||
api(mn.micronaut.messaging) | ||
api(mn.micronaut.inject) | ||
api(libs.managed.amqp.client) | ||
|
||
implementation(mn.micronaut.json.core) | ||
|
||
implementation(mn.micronaut.retry) | ||
implementation(mn.reactor) | ||
implementation(libs.caffeine) | ||
|
||
compileOnly(mn.micronaut.management) | ||
compileOnly(mnMicrometer.micronaut.micrometer.core) | ||
|
||
testImplementation(mnSerde.micronaut.serde.jackson) | ||
testImplementation(libs.testcontainers.spock) | ||
testImplementation(mn.micronaut.inject.groovy) | ||
testImplementation(mn.micronaut.inject.java) | ||
testImplementation(mn.micronaut.management) | ||
testImplementation(mnTest.micronaut.test.spock) | ||
testImplementation(mnMicrometer.micronaut.micrometer.core) { | ||
exclude("io.micronaut.reactor", "micronaut-reactor") | ||
} | ||
testRuntimeOnly(mnLogging.logback.classic) | ||
} | ||
|
||
tasks { | ||
named<Test>("test") { | ||
testLogging.showStandardStreams = true | ||
testLogging.exceptionFormat = TestExceptionFormat.FULL | ||
} | ||
} |
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
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