Publish generated proto sources (#1328)

This commit is contained in:
Matt
2024-05-26 14:02:37 -05:00
committed by GitHub
parent 98633e9150
commit 0eeedf49fc

View File

@@ -20,6 +20,13 @@ task cppSourcesZip(type: Zip) {
from('src/main/native/cpp') {
into '/'
}
// assume we will always have proto sources
from("$buildDir/generated/source/proto/main/cpp") {
into '/'
}
dependsOn generateProto
}
task cppHeadersZip(type: Zip) {