Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,4 @@ __pycache__/

# Docker test packages
dockertests/app-packages/
.protoc-dependencies
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,13 @@
<goal>shade</goal>
</goals>
<configuration>
<!-- Write the reduced POM inside target/ so it never poisons
incremental builds. When dependency-reduced-pom.xml lands
in the project root, a subsequent "mvn package" (without
clean) reads it instead of pom.xml, loses the protobuf/gRPC
dependencies, and the shade plugin produces a JAR without
StreamingMessage and other generated gRPC classes. -->
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.microsoft.azure.functions.worker.Application</mainClass>
Expand Down