You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2018/11/09 17:57:05 UTC

[accumulo] branch master updated: Declare test module's dependency on native libs

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 6615796  Declare test module's dependency on native libs
6615796 is described below

commit 6615796fdeeee458a92765246e443dae61542f7a
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Fri Nov 9 12:54:48 2018 -0500

    Declare test module's dependency on native libs
    
    The test module depends on the native libs. This declares that
    dependency explicitly, so that Maven orders the build so that the native
    libs are built prior to running the integration tests.
---
 pom.xml      | 2 ++
 test/pom.xml | 5 +++++
 2 files changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5873bb1..5b07f19 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1032,6 +1032,8 @@
                 <unusedDeclaredDependency>javax.el:javax.el-api:jar:${javax.el.version}</unusedDeclaredDependency>
                 <!-- spotbugs annotations may or may not be used in each module -->
                 <unusedDeclaredDependency>com.github.spotbugs:spotbugs-annotations:jar:${spotbugs.version}</unusedDeclaredDependency>
+                <!-- ignore unused native; analysis isn't possible with tar.gz dependency -->
+                <unusedDeclaredDependency>org.apache.accumulo:accumulo-native:tar.gz:${project.version}</unusedDeclaredDependency>
               </ignoredUnusedDeclaredDependencies>
             </configuration>
           </execution>
diff --git a/test/pom.xml b/test/pom.xml
index 3ad8bd4..abd3fb8 100644
--- a/test/pom.xml
+++ b/test/pom.xml
@@ -100,6 +100,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.accumulo</groupId>
+      <artifactId>accumulo-native</artifactId>
+      <type>tar.gz</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.accumulo</groupId>
       <artifactId>accumulo-proxy</artifactId>
     </dependency>
     <dependency>