Skip to content

Commit 59e9a79

Browse files
Correct ignored sources for errorprone (#4336)
* Update dependency com.google.protobuf:protobuf-gradle-plugin to v0.9.5 * Correct ignored sources for errorprone --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 19a8a2e commit 59e9a79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ subprojects {
4848

4949
tasks.withType(JavaCompile).configureEach { task ->
5050
task.options.errorprone {
51-
excludedPaths = '.*/build/generated/source/proto/.*'
51+
excludedPaths = '.*/build/generated/sources/proto/.*'
5252
check('MissingFail', CheckSeverity.ERROR)
5353
check('MissingOverride', CheckSeverity.ERROR)
5454
check('UnusedException', CheckSeverity.ERROR)

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ errorproneJavac = { module = "com.google.errorprone:javac", version = "9+181-r41
4040
animalSnifferPlugin = "ru.vyarus:gradle-animalsniffer-plugin:2.0.0"
4141
animalSnifferAnnotations = { module = "org.codehaus.mojo:animal-sniffer-annotations", version = "1.24" }
4242

43-
protobufPlugin = "com.google.protobuf:protobuf-gradle-plugin:0.9.4"
43+
protobufPlugin = "com.google.protobuf:protobuf-gradle-plugin:0.9.5"
4444
protobuf = { module = "com.google.protobuf:protobuf-java", version.ref = "protobuf" }
4545
protoc = { module = "com.google.protobuf:protoc", version.ref = "protobuf" }
4646

0 commit comments

Comments
 (0)