1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00
SKCraft-Launcher/build.gradle

51 lines
1.0 KiB
Groovy
Raw Normal View History

buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.1"
}
}
plugins {
id "com.github.johnrengelman.shadow" version "4.0.4"
id 'io.freefair.lombok' version '5.3.0'
}
println """
*******************************************
You are building SKCraft Launcher!
Output files will be in [subproject]/build/libs
*******************************************
"""
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.skcraft'
2021-02-16 23:20:10 +01:00
version = '4.5-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
if (JavaVersion.current().isJava8Compatible()) {
// Java 8 turns on doclint which we fail
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
tasks.withType(JavaExec) {
workingDir = new File(rootDir, "run/")
workingDir.mkdirs()
}
}