You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2016/11/30 06:44:07 UTC

incubator-atlas git commit: ATLAS-1338: fix SqoopHookIT

Repository: incubator-atlas
Updated Branches:
  refs/heads/master eec1201c9 -> 389ec5614


ATLAS-1338: fix SqoopHookIT

Signed-off-by: Madhan Neethiraj <ma...@apache.org>


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

Branch: refs/heads/master
Commit: 389ec561475350ae6ff0d2994b7dbf9445dd63db
Parents: eec1201
Author: ayubpathan <ap...@hortonworks.com>
Authored: Mon Nov 28 20:34:58 2016 +0530
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Tue Nov 29 22:43:55 2016 -0800

----------------------------------------------------------------------
 addons/sqoop-bridge/pom.xml | 27 +++++++++++++++++++++++++++
 release-log.txt             |  1 +
 2 files changed, 28 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/389ec561/addons/sqoop-bridge/pom.xml
----------------------------------------------------------------------
diff --git a/addons/sqoop-bridge/pom.xml b/addons/sqoop-bridge/pom.xml
index ba605c3..540ef0d 100644
--- a/addons/sqoop-bridge/pom.xml
+++ b/addons/sqoop-bridge/pom.xml
@@ -354,6 +354,10 @@
                             <key>atlas.conf</key>
                             <value>${project.build.directory}/../../../typesystem/target/test-classes</value>
                         </systemProperty>
+                        <systemProperty>
+                            <key>atlas.home</key>
+                            <value>${project.basedir}/target</value>
+                        </systemProperty>
                     </systemProperties>
                     <stopKey>atlas-stop</stopKey>
                     <stopPort>31001</stopPort>
@@ -412,6 +416,29 @@
                 <executions>
                 </executions>
             </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-resources-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/target/models</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>${basedir}/../models</directory>
+                                    <filtering>true</filtering>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/389ec561/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index 103b929..7ec7086 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
 ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
 
 ALL CHANGES:
+ATLAS-1338 fix SqoopHookIT (ayubpathan via mneethiraj)
 ATLAS-1300 LineageResource API needs to map to the new LineageREST API (sarath.kum4r@gmail.com via svimal2106)
 ATLAS-1321 fixed HiveHookIT failures (ayubpathan via mneethiraj)
 ATLAS-1336 fixed StormHookIT (ayubpathan via mneethiraj)