Skip to content

Commit

Permalink
Final cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-chen committed Apr 8, 2021
1 parent 20635a8 commit 89140f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ buildscript {
maven {
url = 's3://search-vemsarat/'
credentials(AwsCredentials) {
accessKey = "AKIAUPQMZBE7UNXZ7YU2"
secretKey = "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"
accessKey = System.env.AWS_ACCESS_KEY_ID ?: findProperty('aws_access_key_id')
secretKey = System.env.AWS_ACCESS_KEY_ID ?: findProperty('aws_secret_access_key')
}
}
jcenter()
Expand Down Expand Up @@ -67,8 +67,8 @@ subprojects {
maven {
url = 's3://search-vemsarat/'
credentials(AwsCredentials) {
accessKey = "AKIAUPQMZBE7UNXZ7YU2"
secretKey = "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"
accessKey = System.env.AWS_ACCESS_KEY_ID ?: findProperty('aws_access_key_id')
secretKey = System.env.AWS_ACCESS_KEY_ID ?: findProperty('aws_secret_access_key')
}
}
}
Expand Down

0 comments on commit 89140f9

Please sign in to comment.