-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for reactive PubSub consumers (#958)
- Loading branch information
1 parent
591b23a
commit 160724a
Showing
65 changed files
with
2,571 additions
and
93 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
buildSrc/src/main/groovy/io.micronaut.build.internal.gcp-testsuite.gradle
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,29 @@ | ||
plugins { | ||
id "io.micronaut.build.internal.gcp-base" | ||
id "io.micronaut.test-resources" | ||
} | ||
|
||
tasks.withType(Test) { | ||
useJUnitPlatform() | ||
} | ||
|
||
dependencies { | ||
annotationProcessor(mn.micronaut.inject.java) | ||
|
||
implementation(projects.micronautGcpFunctionHttp) | ||
implementation(projects.micronautGcpPubsub) | ||
implementation(projects.micronautGcpSecretManager) | ||
implementation(mn.reactor) | ||
implementation mnSerde.micronaut.serde.jackson | ||
implementation mnJacksonXml.micronaut.jackson.xml | ||
|
||
compileOnly(libs.managed.functions.framework.api) | ||
|
||
testRuntimeOnly(libs.junit.jupiter.engine) | ||
testRuntimeOnly mnLogging.logback.classic | ||
testRuntimeOnly mn.snakeyaml | ||
} | ||
|
||
micronaut { | ||
importMicronautPlatform.set(false) | ||
} |
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
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.