RYA-377 Added executable jar for CLI tool
Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/6056528b Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/6056528b Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/6056528b Branch: refs/heads/master Commit: 6056528b23a4d1762a078a5915c4607606840996 Parents: 7deb0c0 Author: Andrew Smith <[email protected]> Authored: Tue Oct 31 15:49:04 2017 -0400 Committer: caleb <[email protected]> Committed: Tue Jan 9 15:13:00 2018 -0500 ---------------------------------------------------------------------- extras/rya.streams/client/pom.xml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/6056528b/extras/rya.streams/client/pom.xml ---------------------------------------------------------------------- diff --git a/extras/rya.streams/client/pom.xml b/extras/rya.streams/client/pom.xml index 0dc640b..2e49952 100644 --- a/extras/rya.streams/client/pom.xml +++ b/extras/rya.streams/client/pom.xml @@ -75,4 +75,31 @@ under the License. <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + <archive> + <manifest> + <mainClass>org.apache.rya.streams.client.CLIDriver</mainClass> + </manifest> + </archive> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>
