Compare commits

..

No commits in common. "7d8af3af08ff1f3bbc11ba52b808b1a62a2b05b6" and "517b84042f6c454ed65bebf579b920496d5fa988" have entirely different histories.

3 changed files with 4 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# ---> Gradle
.gradle
/build/
gradle.properties
# Ignore Gradle GUI config
gradle-app.setting

View File

@ -87,14 +87,12 @@ test {
}
uploadArchives {
Properties props = new Properties()
props.load(new FileInputStream("$buildDir/credentials.properties"))
repositories.mavenDeployer {
repository(url: 'https://maven.speiger.com/repository/main') {
authentication(userName: props.mavenUser, password: props.mavenPassword)
authentication(userName: project.properties.mavenUser, password: project.properties.mavenPassword)
}
snapshotRepository(url: 'https://maven.speiger.com/repository/main') {
authentication(userName: props.mavenUser, password: props.mavenPassword)
authentication(userName: project.properties.mavenUser, password: project.properties.mavenPassword)
}
pom {
version = project.version

View File

@ -1 +0,0 @@
org.gradle.jvmargs=-Xmx3G