Adding cep extension jars to distribution
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/e129b807 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/e129b807 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/e129b807 Branch: refs/heads/master Commit: e129b807df26cf73db74a5adffeb5b2908993aba Parents: 994255e Author: Thanuja <[email protected]> Authored: Mon Nov 30 01:46:11 2015 +0530 Committer: gayangunarathne <[email protected]> Committed: Tue Dec 1 08:57:54 2015 +0530 ---------------------------------------------------------------------- extensions/cep/modules/distribution/pom.xml | 10 ++++++++++ extensions/cep/modules/distribution/src/assembly/bin.xml | 9 +++++++++ extensions/cep/pom.xml | 2 +- pom.xml | 10 ++++++++++ 4 files changed, 30 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/e129b807/extensions/cep/modules/distribution/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/cep/modules/distribution/pom.xml b/extensions/cep/modules/distribution/pom.xml index cb9e874..1b2fbc5 100644 --- a/extensions/cep/modules/distribution/pom.xml +++ b/extensions/cep/modules/distribution/pom.xml @@ -63,4 +63,14 @@ </build> </profile> </profiles> + <dependencies> + <dependency> + <groupId>org.apache.stratos</groupId> + <artifactId>org.apache.stratos.cep300.extension</artifactId> + </dependency> + <dependency> + <groupId>org.apache.stratos</groupId> + <artifactId>org.apache.stratos.cep.310.extension</artifactId> + </dependency> + </dependencies> </project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/stratos/blob/e129b807/extensions/cep/modules/distribution/src/assembly/bin.xml ---------------------------------------------------------------------- diff --git a/extensions/cep/modules/distribution/src/assembly/bin.xml b/extensions/cep/modules/distribution/src/assembly/bin.xml index 509a6e2..8706de0 100755 --- a/extensions/cep/modules/distribution/src/assembly/bin.xml +++ b/extensions/cep/modules/distribution/src/assembly/bin.xml @@ -56,4 +56,13 @@ <fileMode>644</fileMode> </file> </files> + <dependencySets> + <dependencySet> + <outputDirectory>${project.artifactId}-${project.version}/lib</outputDirectory> + <includes> + <include>org.apache.stratos:org.apache.stratos.cep300.extension:jar</include> + <include>org.apache.stratos:org.apache.stratos.cep.310.extension:jar</include> + </includes> + </dependencySet> + </dependencySets> </assembly> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/stratos/blob/e129b807/extensions/cep/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/cep/pom.xml b/extensions/cep/pom.xml index ce59670..b746075 100644 --- a/extensions/cep/pom.xml +++ b/extensions/cep/pom.xml @@ -32,8 +32,8 @@ <description>Apache Stratos CEP Extensions</description> <modules> - <module>modules/distribution</module> <module>modules/stratos-cep-extension/wso2cep-3.0.0</module> <module>modules/stratos-cep-extension/wso2cep-3.1.0</module> + <module>modules/distribution</module> </modules> </project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/stratos/blob/e129b807/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 8125401..2c62945 100644 --- a/pom.xml +++ b/pom.xml @@ -1028,6 +1028,16 @@ </dependency> <dependency> <groupId>org.apache.stratos</groupId> + <artifactId>org.apache.stratos.cep300.extension</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.stratos</groupId> + <artifactId>org.apache.stratos.cep.310.extension</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.stratos</groupId> <artifactId>org.apache.stratos.das.extension</artifactId> <version>${project.version}</version> </dependency>
