You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by im...@apache.org on 2018/11/02 17:41:50 UTC

asterixdb git commit: [NO ISSUE] Fix AsterixServerIntegrationUtil

Repository: asterixdb
Updated Branches:
  refs/heads/master b14490cd0 -> e9a911f5c


[NO ISSUE] Fix AsterixServerIntegrationUtil

Add test dependency on LSM test classes used at
runtime in AsterixHyracksIntegrationUtil and added
exception to dependency plugin since these dependencies
can't be found at compile time

Change-Id: I5c92f45343710ca28d7c4d2e655fa0acd68868ba
Reviewed-on: https://asterix-gerrit.ics.uci.edu/3011
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Contrib: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Michael Blow <mb...@apache.org>


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

Branch: refs/heads/master
Commit: e9a911f5ca08786090d10f19d2dcc28df2256191
Parents: b14490c
Author: Ian Maxon <im...@apache.org>
Authored: Tue Oct 30 14:55:11 2018 -0700
Committer: Ian Maxon <im...@apache.org>
Committed: Fri Nov 2 10:12:26 2018 -0700

----------------------------------------------------------------------
 asterixdb/asterix-server/pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/e9a911f5/asterixdb/asterix-server/pom.xml
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-server/pom.xml b/asterixdb/asterix-server/pom.xml
index 0062a1a..36d8cb1 100644
--- a/asterixdb/asterix-server/pom.xml
+++ b/asterixdb/asterix-server/pom.xml
@@ -395,6 +395,7 @@
         <configuration>
           <ignoredDependencies combine.children="append">
             <ignoredDependency>org.apache.asterix:asterix-opt-bom:*</ignoredDependency>
+            <ignoredDependency>org.apache.hyracks:hyracks-storage-am-lsm-btree-test:*</ignoredDependency>
           </ignoredDependencies>
           <usedDependencies combine.children="append">
             <usedDependency>org.apache.asterix:asterix-app</usedDependency>
@@ -573,6 +574,12 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.apache.hyracks</groupId>
+      <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.asterix</groupId>
       <artifactId>asterix-app</artifactId>
       <version>${project.version}</version>