Adjust build structure for builds requiring older gradle
This commit is contained in:
parent
03a0a58da6
commit
45b914fd84
9 changed files with 15 additions and 2 deletions
48
oldbuilds/build.gradle
Normal file
48
oldbuilds/build.gradle
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
plugins {
|
||||
id "com.github.johnrengelman.shadow" version "2.0.4"
|
||||
id 'java'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url "https://oss.sonatype.org/content/repositories/releases" }
|
||||
maven { url "https://repo.mikeprimm.com" }
|
||||
maven { url "https://repo.maven.apache.org/maven2" }
|
||||
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
|
||||
maven { url "https://repo.codemc.org/repository/maven-public/" }
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
||||
group = 'us.dynmap'
|
||||
version = '3.2-SNAPSHOT'
|
||||
|
||||
}
|
||||
|
||||
class Globals {
|
||||
String buildNumber = System.getenv().BUILD_NUMBER ?: "Dev"
|
||||
}
|
||||
ext {
|
||||
globals = new Globals()
|
||||
}
|
||||
|
||||
subprojects {
|
||||
apply plugin: "com.github.johnrengelman.shadow"
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
||||
}
|
||||
|
||||
clean {
|
||||
delete "target"
|
||||
}
|
||||
|
||||
task setupCIWorkspace {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue