You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by sa...@apache.org on 2017/09/18 17:02:55 UTC

atlas git commit: ATLAS-2145: Errors during build

Repository: atlas
Updated Branches:
  refs/heads/master c1f4007a9 -> dc358fab2


ATLAS-2145: Errors during build

Signed-off-by: Sarath Subramanian <ss...@hortonworks.com>


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

Branch: refs/heads/master
Commit: dc358fab2dc5fcfefd8aacb5252a671be316c328
Parents: c1f4007
Author: Péter Gergő Barna <bp...@gmail.com>
Authored: Mon Sep 18 10:02:43 2017 -0700
Committer: Sarath Subramanian <ss...@hortonworks.com>
Committed: Mon Sep 18 10:02:43 2017 -0700

----------------------------------------------------------------------
 client/pom.xml           | 13 +++++++++++++
 dashboardv2/package.json |  3 ++-
 intg/pom.xml             | 11 +++++++++++
 3 files changed, 26 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/dc358fab/client/pom.xml
----------------------------------------------------------------------
diff --git a/client/pom.xml b/client/pom.xml
index 6db5ef5..2d8c01f 100755
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -60,6 +60,10 @@
             <groupId>com.sun.jersey</groupId>
             <artifactId>jersey-client</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.sun.jersey</groupId>
+            <artifactId>jersey-json</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>org.testng</groupId>
@@ -78,5 +82,14 @@
             <artifactId>mockito-all</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>commons-cli</groupId>
+            <artifactId>commons-cli</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.hadoop</groupId>
+            <artifactId>hadoop-auth</artifactId>
+            <version>${hadoop.version}</version>
+        </dependency>
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/atlas/blob/dc358fab/dashboardv2/package.json
----------------------------------------------------------------------
diff --git a/dashboardv2/package.json b/dashboardv2/package.json
index 1cb1384..ba1ee1b 100644
--- a/dashboardv2/package.json
+++ b/dashboardv2/package.json
@@ -45,7 +45,8 @@
     "requirejs": "2.3.3",
     "requirejs-text": "2.0.15",
     "select2": "4.0.3",
-    "underscore": "1.8.3"
+    "underscore": "1.8.3",
+    "js-beautify": "1.6.14"
   },
   "devDependencies": {
     "connect-livereload": "^0.5.4",

http://git-wip-us.apache.org/repos/asf/atlas/blob/dc358fab/intg/pom.xml
----------------------------------------------------------------------
diff --git a/intg/pom.xml b/intg/pom.xml
index ffc468f..a3d0e27 100644
--- a/intg/pom.xml
+++ b/intg/pom.xml
@@ -72,6 +72,17 @@
             <artifactId>spring-context</artifactId>
             <version>${spring.version}</version>
         </dependency>
+        <dependency>
+            <groupId>com.sun.jersey</groupId>
+            <artifactId>jersey-core</artifactId>
+            <version>${jersey.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>${commons-lang.version}</version>
+        </dependency>
+
     </dependencies>
 
     <build>