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/29 07:13:37 UTC

incubator-atlas git commit: ATLAS-1336: fixed StormHookIT

Repository: incubator-atlas
Updated Branches:
  refs/heads/master 20aa6cf25 -> 3d212311c


ATLAS-1336: fixed StormHookIT

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/3d212311
Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/3d212311
Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/3d212311

Branch: refs/heads/master
Commit: 3d212311ccc45eb48d3e9b36cb2f472ece2a0846
Parents: 20aa6cf
Author: ayubpathan <ap...@hortonworks.com>
Authored: Mon Nov 28 19:55:49 2016 +0530
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Mon Nov 28 23:13:23 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/3d212311/addons/storm-bridge/pom.xml
----------------------------------------------------------------------
diff --git a/addons/storm-bridge/pom.xml b/addons/storm-bridge/pom.xml
index c54053d..92e0ca8 100644
--- a/addons/storm-bridge/pom.xml
+++ b/addons/storm-bridge/pom.xml
@@ -447,6 +447,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>
@@ -511,6 +515,29 @@
                 <groupId>net.alchim31.maven</groupId>
                 <artifactId>scala-maven-plugin</artifactId>
             </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/3d212311/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index a7f9ab0..dbb6498 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -9,6 +9,8 @@ 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-1336 fixed StormHookIT (ayubpathan via mneethiraj)
+ATLAS-1335 multi-value attribute handling in AtlasStructType to be consistent with TypeSystem for backward compatibility (mneethiraj)
 ATLAS-1333 Storm Hook fails to capture the topology (svimal2106)
 ATLAS-1291 Type "hive_column_lineage" not present in hive_model.json (svimal2106)
 ATLAS-1325 Fix Apache Build failure due to Rat check on log files (svimal2106)