Skip to content

Commit

Permalink
Refactored passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Oct 6, 2014
1 parent 7ab452a commit 4d37810
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ build
.idea
.gradle
*.log
*.iws
*.iws
gradle.properties
4 changes: 2 additions & 2 deletions accounts-web-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ if (project.hasProperty('production')) {
cloudfoundry {
target = 'https://api.run.pivotal.io'
application = 'accounts'
username = 'john.smart@wakaleo.com'
password = 'nos-bak-yac-yu-i'
username = cfUsername
password = cfPassword
file = file("${jar.archivePath}")
buildpack = 'https://github.com/cloudfoundry/java-buildpack'
services {
Expand Down
10 changes: 5 additions & 5 deletions flights-web-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ task integrationTests(type: Test) {
systemProperty 'mongodb.host', 'ds039020.mongolab.com'
systemProperty 'mongodb.port', '39020'
systemProperty 'mongodb.database', 'flyinghigh-integration'
systemProperty 'mongodb.username', 'flyinghigh'
systemProperty 'mongodb.password', 'flyinghigh'
systemProperty 'mongodb.username', mongoUsername
systemProperty 'mongodb.password', mongoPassword
}

include '**/*IT.class'
Expand Down Expand Up @@ -97,9 +97,9 @@ if (project.hasProperty('production')) {
cloudfoundry {
target = 'https://api.run.pivotal.io'
application = 'flights'
username = 'john.smart@wakaleo.com'
password = 'nos-bak-yac-yu-i'
file = file("${jar.archivePath}")
username = cfUsername
password = cfPassword
file = file("${jar.archivePath}")
buildpack = 'https://github.com/cloudfoundry/java-buildpack'
services {
'mongodb' {
Expand Down

0 comments on commit 4d37810

Please sign in to comment.