add maven publish target

This commit is contained in:
Jakob (XDjackieXD) Riepler 2018-11-14 21:19:32 +01:00
parent 7daacd17e3
commit 926d727e4b
2 changed files with 24 additions and 0 deletions

View file

@ -15,6 +15,10 @@ version = "b2"
group = "de.ellpeck.naturesaura"
archivesBaseName = "NaturesAura"
if(hasProperty('buildnumber')){
version = "${version}-${this.properties['buildnumber']}"
}
sourceCompatibility = targetCompatibility = '1.8'
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
@ -66,3 +70,23 @@ processResources {
exclude 'mcmod.info'
}
}
apply plugin: 'maven-publish'
jar {
}
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
}
}
repositories {
maven {
// url "file:///srv/nginx/maven"
url "file:///tmp/maven"
}
}
}

0
gradlew vendored Normal file → Executable file
View file