Commit f4e4396d by Jon Maron

ATLAS-15 remove specific version string as default property value

parent ed9b669f
...@@ -119,7 +119,7 @@ public class BaseSSLAndKerberosTest extends BaseSecurityTest { ...@@ -119,7 +119,7 @@ public class BaseSSLAndKerberosTest extends BaseSecurityTest {
protected String getWarPath() { protected String getWarPath() {
return String.format("/../../webapp/target/atlas-webapp-%s", return String.format("/../../webapp/target/atlas-webapp-%s",
System.getProperty("project.version", "0.6-incubating-SNAPSHOT")); System.getProperty("project.version"));
} }
protected HiveConf getHiveConf() { protected HiveConf getHiveConf() {
......
...@@ -183,7 +183,7 @@ public class SSLHiveHookIT { ...@@ -183,7 +183,7 @@ public class SSLHiveHookIT {
protected String getWarPath() { protected String getWarPath() {
return String.format("/../../webapp/target/atlas-webapp-%s", return String.format("/../../webapp/target/atlas-webapp-%s",
System.getProperty("project.version", "0.6-incubating-SNAPSHOT")); System.getProperty("project.version"));
} }
private HiveConf getHiveConf() { private HiveConf getHiveConf() {
......
...@@ -44,7 +44,7 @@ public class BaseSecurityTest { ...@@ -44,7 +44,7 @@ public class BaseSecurityTest {
protected String getWarPath() { protected String getWarPath() {
return String.format("/target/atlas-webapp-%s.war", 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 { protected void generateTestProperties(Properties props) throws ConfigurationException, IOException {
......
...@@ -186,7 +186,7 @@ public class SecureEmbeddedServerITBase { ...@@ -186,7 +186,7 @@ public class SecureEmbeddedServerITBase {
protected String getWarPath() { protected String getWarPath() {
return String 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 { protected void setupCredentials() throws Exception {
......
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