forked from Speiger/Primitive-Collections
Testing for secrets to be present
This commit is contained in:
parent
bc75a5cd97
commit
af62394651
|
@ -87,8 +87,11 @@ test {
|
|||
}
|
||||
|
||||
uploadArchives {
|
||||
Properties props = new Properties()
|
||||
props.load(new FileInputStream("$buildDir/credentials.properties"))
|
||||
Properties props = new Properties()
|
||||
if(file("$buildDir/credentials.properties").exists())
|
||||
{
|
||||
props.load(new FileInputStream("$buildDir/credentials.properties"))
|
||||
}
|
||||
repositories.mavenDeployer {
|
||||
repository(url: 'https://maven.speiger.com/repository/main') {
|
||||
authentication(userName: props.mavenUser, password: props.mavenPassword)
|
||||
|
|
Loading…
Reference in New Issue