-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to reactor and fix tests (#343)
* WIP: Switch to reactor * Use Micronaut 3.0.0-SNAPSHOT * Add back micronaut-reactor because of the converters * remove snapshot repository * pin micrometer version to 4.0.0-RC2 * build: set micronaut version to 3.0.0-M4 * return Publisher and SingleResult Co-authored-by: Sergio del Amo <[email protected]>
- Loading branch information
Showing
21 changed files
with
166 additions
and
144 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
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 |
---|---|---|
@@ -1,18 +1,16 @@ | ||
dependencies { | ||
api project(":cache-core") | ||
api "com.github.ben-manes.caffeine:caffeine:${caffeineVersion}" | ||
implementation "io.micronaut.reactor:micronaut-reactor" | ||
compileOnly "ch.qos.logback:logback-classic:1.2.3" | ||
compileOnly "io.micronaut.micrometer:micronaut-micrometer-core" | ||
implementation "io.projectreactor:reactor-core" | ||
compileOnly "io.micronaut.micrometer:micronaut-micrometer-core:$micronautMicrometerVersion" | ||
|
||
testImplementation "ch.qos.logback:logback-classic:1.2.3" | ||
|
||
testImplementation 'org.jsr107.ri:cache-ri-impl:1.1.1' | ||
testImplementation "io.micronaut:micronaut-inject-groovy" | ||
testImplementation 'io.micronaut.reactor:micronaut-reactor-http-client:1.2.0' | ||
testImplementation "io.micronaut:micronaut-management" | ||
testImplementation "io.micronaut.reactor:micronaut-reactor-http-client" | ||
testImplementation "io.micronaut:micronaut-http-client" | ||
testImplementation "io.micronaut:micronaut-http-server-netty" | ||
|
||
testImplementation "io.micronaut.micrometer:micronaut-micrometer-core" | ||
} | ||
testImplementation "io.micronaut.micrometer:micronaut-micrometer-core:$micronautMicrometerVersion" | ||
} |
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
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
Oops, something went wrong.