You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eagle.apache.org by ha...@apache.org on 2016/09/09 12:31:39 UTC

incubator-eagle git commit: [minor] fix eagle-server assembly by add eagle-storage-hbase jar

Repository: incubator-eagle
Updated Branches:
  refs/heads/master 7f41d4278 -> fcaf14a4e


[minor] fix eagle-server assembly by add eagle-storage-hbase jar


Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/fcaf14a4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/fcaf14a4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/fcaf14a4

Branch: refs/heads/master
Commit: fcaf14a4e6dcfc9f06aae51cfa7cc25a79a3ddd2
Parents: 7f41d42
Author: Hao Chen <ha...@apache.org>
Authored: Fri Sep 9 20:30:11 2016 +0800
Committer: Hao Chen <ha...@apache.org>
Committed: Fri Sep 9 20:31:03 2016 +0800

----------------------------------------------------------------------
 eagle-server-assembly/pom.xml                    | 2 +-
 eagle-server-assembly/src/assembly/eagle-bin.xml | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/fcaf14a4/eagle-server-assembly/pom.xml
----------------------------------------------------------------------
diff --git a/eagle-server-assembly/pom.xml b/eagle-server-assembly/pom.xml
index 5b9537b..3bc888e 100644
--- a/eagle-server-assembly/pom.xml
+++ b/eagle-server-assembly/pom.xml
@@ -56,7 +56,7 @@
                             <goal>copy-dependencies</goal>
                         </goals>
                         <configuration>
-                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
+                            <outputDirectory>${project.build.directory}/dependencies</outputDirectory>
                         </configuration>
                     </execution>
                 </executions>

http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/fcaf14a4/eagle-server-assembly/src/assembly/eagle-bin.xml
----------------------------------------------------------------------
diff --git a/eagle-server-assembly/src/assembly/eagle-bin.xml b/eagle-server-assembly/src/assembly/eagle-bin.xml
index 39b1692..c56b0aa 100644
--- a/eagle-server-assembly/src/assembly/eagle-bin.xml
+++ b/eagle-server-assembly/src/assembly/eagle-bin.xml
@@ -81,13 +81,14 @@
 
         <!-- copy dependent jars into /lib -->
         <fileSet>
-            <directory>${project.build.directory}/lib</directory>
+            <directory>${project.build.directory}/dependencies</directory>
             <outputDirectory>lib</outputDirectory>
             <includes>
                 <include>dropwizard-*.jar</include>
                 <include>storm-core-*.jar</include>
                 <include>slf4j-api-*.jar</include>
                 <include>jersey-*.jar</include>
+                <include>eagle-storage-hbase-*.jar</include>
             </includes>
         </fileSet>
     </fileSets>