mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-17 09:53:11 +01:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
19a9e2e4eb
2 changed files with 24 additions and 0 deletions
24
build.gradle
24
build.gradle
|
@ -15,6 +15,10 @@ version = "b2"
|
||||||
group = "de.ellpeck.naturesaura"
|
group = "de.ellpeck.naturesaura"
|
||||||
archivesBaseName = "NaturesAura"
|
archivesBaseName = "NaturesAura"
|
||||||
|
|
||||||
|
if(hasProperty('buildnumber')){
|
||||||
|
version = "${version}-${this.properties['buildnumber']}"
|
||||||
|
}
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = '1.8'
|
sourceCompatibility = targetCompatibility = '1.8'
|
||||||
compileJava {
|
compileJava {
|
||||||
sourceCompatibility = targetCompatibility = '1.8'
|
sourceCompatibility = targetCompatibility = '1.8'
|
||||||
|
@ -66,3 +70,23 @@ processResources {
|
||||||
exclude 'mcmod.info'
|
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
0
gradlew
vendored
Normal file → Executable file
Loading…
Reference in a new issue