Repository: incubator-atlas Updated Branches: refs/heads/master 389ec5614 -> be9c26482
ATLAS-1337: fixed FalconHookIT Signed-off-by: Madhan Neethiraj <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/be9c2648 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/be9c2648 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/be9c2648 Branch: refs/heads/master Commit: be9c264824a5e5860c2dd2b44f70cb38f7c628f0 Parents: 389ec56 Author: ayubpathan <[email protected]> Authored: Mon Nov 28 20:14:48 2016 +0530 Committer: Madhan Neethiraj <[email protected]> Committed: Tue Nov 29 23:27:29 2016 -0800 ---------------------------------------------------------------------- addons/falcon-bridge/pom.xml | 28 ++++++++++++++++++++++++++++ release-log.txt | 1 + 2 files changed, 29 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/be9c2648/addons/falcon-bridge/pom.xml ---------------------------------------------------------------------- diff --git a/addons/falcon-bridge/pom.xml b/addons/falcon-bridge/pom.xml index 6c48659..eff7e75 100644 --- a/addons/falcon-bridge/pom.xml +++ b/addons/falcon-bridge/pom.xml @@ -298,6 +298,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> @@ -356,6 +360,30 @@ <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/be9c2648/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 7ec7086..84c9957 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-1337 fixed FalconHookIT (ayubpathan via mneethiraj) ATLAS-1338 fix SqoopHookIT (ayubpathan via mneethiraj) ATLAS-1300 LineageResource API needs to map to the new LineageREST API ([email protected] via svimal2106) ATLAS-1321 fixed HiveHookIT failures (ayubpathan via mneethiraj)
