Minor versioning changes

This commit is contained in:
Kenzie Togami
2019-05-05 01:37:11 -07:00
committed by NotMyFault
parent 55b02e1b1f
commit 8d68da09a3
3 changed files with 19 additions and 34 deletions

View File

@@ -28,8 +28,6 @@ plugins {
}
apply plugin: 'java'
clean { delete "target" }
def splashFile = new File('splash.txt')
if (splashFile.exists()) {
@@ -58,23 +56,24 @@ ext {
}
}
if ( project.hasProperty("lzNoVersion") ) { // gradle build -PlzNoVersion
version = "unknown"
} else {
version = String.format("%s.%s", rootVersion, buildNumber)
}
version = String.format("%s.%s", rootVersion, buildNumber)
description = rootProject.name
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
// Enable this requires putting license header files in many, many FAWE files
//Enable this requires putting license header files in many, many FAWE files
//apply plugin: 'net.minecrell.licenser'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
clean.doFirst {
delete "../target"
}
compileJava { options.compilerArgs += ["-parameters"] }
repositories {
@@ -96,23 +95,6 @@ subprojects {
maven {url "http://ci.emc.gs/nexus/content/groups/aikar/" }
}
if (JavaVersion.current().isJava8Compatible()) {
// Java 8 turns on doclint which we fail
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives javadocJar
}
if (!(name.equals('worldedit-forge') || name.equals('worldedit-sponge'))) {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
@@ -144,4 +126,4 @@ subprojects {
// header = rootProject.file("HEADER.txt")
// include '**/*.java'
//}
}
}