Skip to content
Snippets Groups Projects
Commit db602fd0 authored by John Flavin's avatar John Flavin
Browse files

FIX Cargo and tomcat properties no longer required

parent 34e4c801
No related branches found
No related tags found
No related merge requests found
...@@ -290,17 +290,19 @@ dependencies { ...@@ -290,17 +290,19 @@ dependencies {
} }
cargo { cargo {
def blankProperty = "xxx"
def blankPort = 0
containerId = 'tomcat7x' containerId = 'tomcat7x'
port = deployPort as int port = hasProperty('deployPort') ? getProperty('deployPort') as int : blankPort
deployable { deployable {
context = deployContext context = hasProperty('deployContext') ? getProperty('deployContext') : blankProperty
} }
remote { remote {
hostname = deployHost hostname = hasProperty('deployHost') ? getProperty('deployHost') : blankProperty
username = deployUser username = hasProperty('deployUser') ? getProperty('deployUser') : blankProperty
password = deployPassword password = hasProperty('deployPassword') ? getProperty('deployPassword') : blankProperty
} }
} }
...@@ -335,12 +337,13 @@ publishing { ...@@ -335,12 +337,13 @@ publishing {
} }
} }
repositories { repositories {
def blankProperty = "xxx"
maven { maven {
credentials { credentials {
// These properties must be set in the ~/.gradle/gradle.properties file or passed on the Gradle command // These properties must be set in the ~/.gradle/gradle.properties file or passed on the Gradle command
// line in the form -DrepoUsername=foo -DrepoPassword=bar. // line in the form -DrepoUsername=foo -DrepoPassword=bar.
username repoUsername username hasProperty('repoUsername') ? getProperty('repoUsername') : blankProperty
password repoPassword password hasProperty('repoPassword') ? getProperty('repoPassword') : blankProperty
} }
if (project.version.endsWith('-SNAPSHOT')) { if (project.version.endsWith('-SNAPSHOT')) {
url "http://nrgxnat.artifactoryonline.com/nrgxnat/libs-snapshot-local" url "http://nrgxnat.artifactoryonline.com/nrgxnat/libs-snapshot-local"
...@@ -352,8 +355,8 @@ publishing { ...@@ -352,8 +355,8 @@ publishing {
credentials { credentials {
// These properties must be set in the ~/.gradle/gradle.properties file or passed on the Gradle command // These properties must be set in the ~/.gradle/gradle.properties file or passed on the Gradle command
// line in the form -DrepoUsername=foo -DrepoPassword=bar. // line in the form -DrepoUsername=foo -DrepoPassword=bar.
username repoUsername username hasProperty('repoUsername') ? getProperty('repoUsername') : blankProperty
password repoPassword password hasProperty('repoPassword') ? getProperty('repoPassword') : blankProperty
} }
if (project.version.endsWith('-SNAPSHOT')) { if (project.version.endsWith('-SNAPSHOT')) {
url "http://nrgxnat.artifactoryonline.com/nrgxnat/libs-snapshot-local" url "http://nrgxnat.artifactoryonline.com/nrgxnat/libs-snapshot-local"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment