Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not use GenerateProtoTask as source of output dirs information (3/3) #670

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ configurations {
}

dependencies {
compileOnly "com.android.tools.build:gradle:4.1.0"
compileOnly "com.android.tools.build:gradle:4.2.2"
compileOnly "org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:1.7.22"

implementation 'com.google.gradle:osdetector-gradle-plugin:1.7.2'
Expand Down
4 changes: 2 additions & 2 deletions examples/exampleKotlinDslProject/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ protobuf {
}
}
generateProtoTasks {
ofSourceSet("main").forEach {
it.plugins {
ofSourceSet("main") {
plugins {
// Apply the "grpc" plugin whose spec is defined above, without
// options. Note the braces cannot be omitted, otherwise the
// plugin will not be added. This is because of the implicit way
Expand Down
2 changes: 1 addition & 1 deletion examples/exampleProject/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protobuf {
}
}
generateProtoTasks {
ofSourceSet('main').configureEach {
ofSourceSet('main') {
plugins {
// Apply the "grpc" plugin whose spec is defined above, without
// options. Note the braces cannot be omitted, otherwise the
Expand Down
Loading