[FLINK-7824][QS] Put the QS modules in the opt folder. Now the user can find the jars in the opt/ folder and he can activate QS by putting the core jar in the lib/ folder and program against the client jar.
Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/2fd8721d Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/2fd8721d Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/2fd8721d Branch: refs/heads/master Commit: 2fd8721d0375bfa60a190bb206a65287c167a43a Parents: 0c77150 Author: kkloudas <[email protected]> Authored: Thu Oct 26 15:07:47 2017 +0200 Committer: kkloudas <[email protected]> Committed: Thu Oct 26 18:57:35 2017 +0200 ---------------------------------------------------------------------- flink-dist/src/main/assemblies/opt.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/2fd8721d/flink-dist/src/main/assemblies/opt.xml ---------------------------------------------------------------------- diff --git a/flink-dist/src/main/assemblies/opt.xml b/flink-dist/src/main/assemblies/opt.xml index 58aee3d..14ec174 100644 --- a/flink-dist/src/main/assemblies/opt.xml +++ b/flink-dist/src/main/assemblies/opt.xml @@ -138,5 +138,13 @@ <destName>flink-s3-fs-presto-${project.version}.jar</destName> <fileMode>0644</fileMode> </file> + + <!-- Queryable State --> + <file> + <source>../flink-queryable-state/flink-queryable-state-runtime/target/flink-queryable-state-runtime_${scala.binary.version}-${project.version}.jar</source> + <outputDirectory>opt/</outputDirectory> + <destName>flink-queryable-state-runtime_${scala.binary.version}-${project.version}.jar</destName> + <fileMode>0644</fileMode> + </file> </files> </assembly>
