Filter dependencies by runtime scope for console assembly CTR
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/28f536ba Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/28f536ba Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/28f536ba Branch: refs/heads/TINKERPOP-1688 Commit: 28f536ba7fdb933b490d91d8b2cd09e70ea57c2c Parents: 924a67e Author: Stephen Mallette <[email protected]> Authored: Sat Jun 17 06:34:59 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Sat Jun 17 06:34:59 2017 -0400 ---------------------------------------------------------------------- gremlin-console/src/assembly/standalone.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/28f536ba/gremlin-console/src/assembly/standalone.xml ---------------------------------------------------------------------- diff --git a/gremlin-console/src/assembly/standalone.xml b/gremlin-console/src/assembly/standalone.xml index e4115d5..8ebfb20 100644 --- a/gremlin-console/src/assembly/standalone.xml +++ b/gremlin-console/src/assembly/standalone.xml @@ -69,7 +69,7 @@ limitations under the License. <dependencySet> <outputDirectory>/lib</outputDirectory> <unpack>false</unpack> - <scope>compile</scope> + <scope>runtime</scope> <excludes> <exclude>org.apache.tinkerpop:gremlin-groovy</exclude> <exclude>org.apache.tinkerpop:tinkergraph-gremlin</exclude> @@ -78,7 +78,7 @@ limitations under the License. <dependencySet> <outputDirectory>/ext/tinkergraph-gremlin/plugin</outputDirectory> <unpack>false</unpack> - <scope>compile</scope> + <scope>runtime</scope> <includes> <include>org.apache.tinkerpop:tinkergraph-gremlin</include> </includes> @@ -86,7 +86,7 @@ limitations under the License. <dependencySet> <outputDirectory>/ext/gremlin-groovy/plugin</outputDirectory> <unpack>false</unpack> - <scope>compile</scope> + <scope>runtime</scope> <includes> <include>org.apache.tinkerpop:gremlin-groovy</include> </includes> @@ -94,7 +94,7 @@ limitations under the License. <dependencySet> <outputDirectory>/ext/tinkergraph-gremlin/lib</outputDirectory> <unpack>false</unpack> - <scope>compile</scope> + <scope>runtime</scope> <includes> <include>org.apache.tinkerpop:tinkergraph-gremlin</include> </includes> @@ -102,7 +102,7 @@ limitations under the License. <dependencySet> <outputDirectory>/ext/gremlin-groovy/lib</outputDirectory> <unpack>false</unpack> - <scope>compile</scope> + <scope>runtime</scope> <includes> <include>org.apache.tinkerpop:gremlin-groovy</include> </includes>
