Repository: incubator-streams Updated Branches: refs/heads/master cf8fdf744 -> 0b2927ef8
STREAMS-447: build a test jar in streams-pojo, this closes apache/incubator-streams#322 Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/0b2927ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/0b2927ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/0b2927ef Branch: refs/heads/master Commit: 0b2927ef88cca4937123d114a4df965ab7a88b88 Parents: cf8fdf7 Author: steveblackmon <[email protected]> Authored: Thu Oct 27 00:08:41 2016 -0400 Committer: smarthi <[email protected]> Committed: Thu Oct 27 00:08:41 2016 -0400 ---------------------------------------------------------------------- streams-pojo/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/0b2927ef/streams-pojo/pom.xml ---------------------------------------------------------------------- diff --git a/streams-pojo/pom.xml b/streams-pojo/pom.xml index 24a379f..50e44f2 100644 --- a/streams-pojo/pom.xml +++ b/streams-pojo/pom.xml @@ -256,6 +256,24 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <includes> + <include>**/*.conf</include> + <include>**/*.json</include> + <include>**/*.class</include> + </includes> + </configuration> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </project>
