Add OAuth2 sample to Gradle build

This commit is contained in:
Dave Syer
2025-03-10 16:51:33 +00:00
parent fe2509d1ac
commit e71bdcf8a9
2 changed files with 6 additions and 0 deletions

View File

@@ -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'
}

View File

@@ -7,6 +7,7 @@ pluginManagement {
}
include 'grpc-reactive'
include 'grpc-oauth2'
include 'grpc-secure'
include 'grpc-server'
include 'grpc-server-netty-shaded'