Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5580#discussion_r176658632 --- Diff: flink-end-to-end-tests/pom.xml --- @@ -78,6 +78,27 @@ under the License. </includes> </configuration> </execution> + <execution> + <id>DistributedCacheViaBlobTestProgram</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <classifier>DistributedCacheViaBlobTestProgram</classifier> + + <archive> + <manifestEntries> + <program-class>org.apache.flink.streaming.tests.DistributedCacheViaBlobTestProgram</program-class> + </manifestEntries> + </archive> + + <includes> + <include>org/apache/flink/streaming/tests/DistributedCacheViaBlobTestProgram.class</include> --- End diff -- This can use wildcards, no? `org/apache/flink/streaming/tests/DistributedCacheViaBlobTestProgram* `
---