Skip to content

Commit db45f33

Browse files
committed
explicitly exclude grpc-compiler
1 parent 78436fb commit db45f33

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bom/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ description = 'gRPC: BOM'
77

88
gradle.projectsEvaluated {
99
def projectsToInclude = rootProject.subprojects.findAll {
10-
it.plugins.hasPlugin('java')
10+
return it.name != 'grpc-compiler'
11+
&& it.plugins.hasPlugin('java')
1112
&& it.plugins.hasPlugin('maven-publish')
1213
&& it.tasks.findByName('publishMavenPublicationToMavenRepository')?.enabled
1314
}

0 commit comments

Comments
 (0)