We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be65c5e commit a3e2d48Copy full SHA for a3e2d48
1 file changed
build.gradle
@@ -46,6 +46,13 @@ subprojects {
46
from sourceSets.main.allSource
47
}
48
49
+ // Protobuf files would uselessly end up in the JAR otherwise, see
50
+ // https://github.com/google/protobuf-gradle-plugin/issues/390
51
+ tasks.withType(Jar).configureEach {
52
+ exclude '**/*.proto'
53
+ includeEmptyDirs false
54
+ }
55
+
56
tasks.withType(Test).configureEach {
57
testLogging {
58
events "skipped", "failed"
0 commit comments