You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sm...@apache.org on 2016/10/27 04:09:40 UTC

incubator-streams git commit: STREAMS-447: build a test jar in streams-pojo, this closes apache/incubator-streams#322

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 <sb...@apache.org>
Authored: Thu Oct 27 00:08:41 2016 -0400
Committer: smarthi <sm...@apache.org>
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>