Repository: incubator-atlas Updated Branches: refs/heads/master ed9b669f9 -> f4e4396de
ATLAS-15 remove specific version string as default property value Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/f4e4396d Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/f4e4396d Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/f4e4396d Branch: refs/heads/master Commit: f4e4396deb826d60a1a669ba13e3df0f744b0fb8 Parents: ed9b669 Author: Jon Maron <[email protected]> Authored: Tue Jun 16 13:19:10 2015 -0400 Committer: Jon Maron <[email protected]> Committed: Tue Jun 16 13:19:10 2015 -0400 ---------------------------------------------------------------------- .../java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java | 2 +- .../src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java | 2 +- .../src/test/java/org/apache/atlas/security/BaseSecurityTest.java | 2 +- .../org/apache/atlas/web/service/SecureEmbeddedServerITBase.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f4e4396d/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java ---------------------------------------------------------------------- diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java index 58a7b52..4669577 100644 --- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java +++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java @@ -119,7 +119,7 @@ public class BaseSSLAndKerberosTest extends BaseSecurityTest { protected String getWarPath() { return String.format("/../../webapp/target/atlas-webapp-%s", - System.getProperty("project.version", "0.6-incubating-SNAPSHOT")); + System.getProperty("project.version")); } protected HiveConf getHiveConf() { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f4e4396d/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java ---------------------------------------------------------------------- diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java index 799ec22..5c17b64 100755 --- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java +++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java @@ -183,7 +183,7 @@ public class SSLHiveHookIT { protected String getWarPath() { return String.format("/../../webapp/target/atlas-webapp-%s", - System.getProperty("project.version", "0.6-incubating-SNAPSHOT")); + System.getProperty("project.version")); } private HiveConf getHiveConf() { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f4e4396d/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java ---------------------------------------------------------------------- diff --git a/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java b/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java index 3d7b098..598f56b 100644 --- a/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java +++ b/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java @@ -44,7 +44,7 @@ public class BaseSecurityTest { protected String getWarPath() { return String.format("/target/atlas-webapp-%s.war", - System.getProperty("release.version", "0.6-incubating-SNAPSHOT")); + System.getProperty("release.version")); } protected void generateTestProperties(Properties props) throws ConfigurationException, IOException { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/f4e4396d/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java ---------------------------------------------------------------------- diff --git a/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java b/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java index 5d5599e..db110ca 100755 --- a/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java +++ b/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java @@ -186,7 +186,7 @@ public class SecureEmbeddedServerITBase { protected String getWarPath() { return String - .format("/target/atlas-webapp-%s", System.getProperty("project.version", "0.6-incubating-SNAPSHOT")); + .format("/target/atlas-webapp-%s", System.getProperty("project.version")); } protected void setupCredentials() throws Exception {
