Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
f4e4396d
Commit
f4e4396d
authored
Jun 16, 2015
by
Jon Maron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-15 remove specific version string as default property value
parent
ed9b669f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
BaseSSLAndKerberosTest.java
...va/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java
+1
-1
SSLHiveHookIT.java
...c/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java
+1
-1
BaseSecurityTest.java
...test/java/org/apache/atlas/security/BaseSecurityTest.java
+1
-1
SecureEmbeddedServerITBase.java
.../apache/atlas/web/service/SecureEmbeddedServerITBase.java
+1
-1
No files found.
addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java
View file @
f4e4396d
...
@@ -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
()
{
...
...
addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java
View file @
f4e4396d
...
@@ -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
()
{
...
...
client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java
View file @
f4e4396d
...
@@ -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
{
...
...
webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java
View file @
f4e4396d
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment