Update build.gradle

This commit is contained in:
Shadowfacts 2017-10-08 13:26:07 -04:00
parent a2c8cd6d4b
commit 124de51ded
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 1 additions and 9 deletions

View File

@ -9,10 +9,10 @@ buildscript {
plugins {
id "idea"
id "maven"
}
apply plugin: "kotlin"
apply from: "https://github.com/shadowfacts/maven/raw/master/maven.gradle"
repositories {
jcenter()
@ -25,11 +25,3 @@ dependencies {
}
idea.module.inheritOutputDirs = true
uploadArchives {
repositories.mavenDeployer {
repository(url: "http://archiva.shadowfacts.net/repository/local/") {
authentication(userName: project.hasProperty("mavenUser") ? project.mavenUser : System.getenv("mavenUser"), password: project.hasProperty("mavenPassword") ? project.mavenPassword : System.getenv("mavenPassword"))
}
}
}