mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-24 12:16:28 +01:00
42 lines
881 B
Groovy
42 lines
881 B
Groovy
|
println """
|
||
|
*******************************************
|
||
|
You are building SKCraft Launcher!
|
||
|
|
||
|
Output files will be in [subproject]/build/libs
|
||
|
*******************************************
|
||
|
"""
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.0'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
subprojects {
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'maven'
|
||
|
|
||
|
group = 'com.skcraft'
|
||
|
version = '4.2.3-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.6
|
||
|
targetCompatibility = 1.6
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven { url "http://repo.maven.apache.org/maven2" }
|
||
|
}
|
||
|
|
||
|
if (JavaVersion.current().isJava8Compatible()) {
|
||
|
// Java 8 turns on doclint which we fail
|
||
|
tasks.withType(Javadoc) {
|
||
|
options.addStringOption('Xdoclint:none', '-quiet')
|
||
|
}
|
||
|
}
|
||
|
}
|