diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle index 1188373..c673d0a 100644 --- a/samples/grpc-oauth2/build.gradle +++ b/samples/grpc-oauth2/build.gradle @@ -15,6 +15,10 @@ java { } } +processTestAot { + enabled = false +} + repositories { mavenCentral() maven { url 'https://repo.spring.io/milestone' } @@ -35,6 +39,7 @@ dependencies { implementation 'io.grpc:grpc-services' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.grpc:spring-grpc-test' + testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.0.3' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/samples/settings.gradle b/samples/settings.gradle index aeb1d54..16b382c 100644 --- a/samples/settings.gradle +++ b/samples/settings.gradle @@ -7,6 +7,7 @@ pluginManagement { } include 'grpc-reactive' +include 'grpc-oauth2' include 'grpc-secure' include 'grpc-server' include 'grpc-server-netty-shaded'