Commit ce73ec35 by Suma Shivaprasad

ATLAS-618 Fix assembly for hdfs-module (sumasai via yhemanth)

parent e4aa387f
...@@ -156,6 +156,11 @@ ...@@ -156,6 +156,11 @@
<version>${project.version}</version> <version>${project.version}</version>
</artifactItem> </artifactItem>
<artifactItem> <artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>hdfs-model</artifactId>
<version>${project.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.scala-lang</groupId> <groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId> <artifactId>scala-compiler</artifactId>
<version>${scala.version}</version> <version>${scala.version}</version>
......
...@@ -103,6 +103,11 @@ ...@@ -103,6 +103,11 @@
<artifactId>atlas-notification</artifactId> <artifactId>atlas-notification</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.apache.atlas</groupId>
<artifactId>hdfs-model</artifactId>
</dependency>
<!-- to bring up atlas server for integration tests --> <!-- to bring up atlas server for integration tests -->
<dependency> <dependency>
<groupId>org.apache.atlas</groupId> <groupId>org.apache.atlas</groupId>
...@@ -225,6 +230,11 @@ ...@@ -225,6 +230,11 @@
</artifactItem> </artifactItem>
<artifactItem> <artifactItem>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>hdfs-model</artifactId>
<version>${project.version}</version>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>atlas-common</artifactId> <artifactId>atlas-common</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</artifactItem> </artifactItem>
......
...@@ -288,8 +288,6 @@ public class HiveHookIT { ...@@ -288,8 +288,6 @@ public class HiveHookIT {
String processId = assertProcessIsRegistered(query); String processId = assertProcessIsRegistered(query);
Referenceable process = dgiCLient.getEntity(processId); Referenceable process = dgiCLient.getEntity(processId);
Assert.assertNull(process.get("inputs")); Assert.assertNull(process.get("inputs"));
System.out.println(" Ref Ops : " + process.get("outputs"));
Assert.assertEquals(((List<Referenceable>) process.get("outputs")).size(), 1); Assert.assertEquals(((List<Referenceable>) process.get("outputs")).size(), 1);
} }
......
...@@ -194,6 +194,11 @@ ...@@ -194,6 +194,11 @@
<version>${project.version}</version> <version>${project.version}</version>
</artifactItem> </artifactItem>
<artifactItem> <artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>hdfs-model</artifactId>
<version>${project.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.scala-lang</groupId> <groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId> <artifactId>scala-compiler</artifactId>
<version>${scala.version}</version> <version>${scala.version}</version>
......
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.atlas</groupId> <groupId>org.apache.atlas</groupId>
<artifactId>hive-bridge</artifactId> <artifactId>storm-bridge</artifactId>
<version>0.7-incubating-SNAPSHOT</version> <version>0.7-incubating-SNAPSHOT</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -81,6 +81,12 @@ ...@@ -81,6 +81,12 @@
<outputDirectory>examples</outputDirectory> <outputDirectory>examples</outputDirectory>
</fileSet> </fileSet>
<!-- addons/hdfs-model -->
<fileSet>
<directory>../addons/hdfs-model/target/models</directory>
<outputDirectory>models</outputDirectory>
</fileSet>
<!-- addons/hive --> <!-- addons/hive -->
<fileSet> <fileSet>
<directory>../addons/hive-bridge/src/bin</directory> <directory>../addons/hive-bridge/src/bin</directory>
......
...@@ -13,6 +13,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset ...@@ -13,6 +13,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags) ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES: ALL CHANGES:
ATLAS-618 Fix assembly for hdfs-module (sumasai via yhemanth)
ATLAS-573 Inherited attributes disappear from entities after server restart (dkantor via sumasai) ATLAS-573 Inherited attributes disappear from entities after server restart (dkantor via sumasai)
ATLAS-525 Drop support for partitions, select query lineage, roles, principals, resource, hive_type...(sumasai via shwethags) ATLAS-525 Drop support for partitions, select query lineage, roles, principals, resource, hive_type...(sumasai via shwethags)
ATLAS-599 HDFS Path Model (sumasai via yhemanth) ATLAS-599 HDFS Path Model (sumasai via yhemanth)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment