80 lines
1.5 KiB
Groovy
80 lines
1.5 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'groovy'
|
|
id 'maven'
|
|
|
|
id 'idea'
|
|
id 'eclipse'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
group = 'com.openmodloader'
|
|
archivesBaseName = project.name
|
|
version = '0.0.7-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = 'fabric'
|
|
url = 'http://maven.fabricmc.net/'
|
|
}
|
|
maven {
|
|
name "Modmuss"
|
|
url 'http://maven.modmuss50.me/'
|
|
}
|
|
maven {
|
|
name = 'Mojang'
|
|
url = 'https://libraries.minecraft.net/'
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
deployerJars
|
|
shade
|
|
compile.extendsFrom shade
|
|
}
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
|
|
shade 'org.zeroturnaround:zt-zip:1.9'
|
|
shade 'org.slf4j:slf4j-api:1.7.21'
|
|
shade 'org.slf4j:slf4j-simple:1.7.21'
|
|
shade 'com.google.code.gson:gson:2.6.2'
|
|
shade 'commons-io:commons-io:1.4'
|
|
shade 'com.google.guava:guava:19.0'
|
|
shade 'net.fabricmc:weave:0.1.0.+'
|
|
shade 'cuchaz:enigma:0.11.0.+:lib'
|
|
shade 'net.fabricmc:tiny-remapper:+'
|
|
|
|
|
|
//Always fun when your dep needs the tool to build, but the tool needs the dep.
|
|
//compile 'net.fabricmc:fabric-base:16w38a-0.0.4-SNAPSHOT'
|
|
|
|
shade 'org.apache.commons:commons-lang3:3.5'
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
main.compileClasspath += configurations.shade;
|
|
main.runtimeClasspath += configurations.shade;
|
|
test.compileClasspath += configurations.shade;
|
|
test.runtimeClasspath += configurations.shade;
|
|
}
|
|
|
|
jar {
|
|
from {
|
|
configurations.shade.each { dep ->
|
|
from(project.zipTree(dep)){
|
|
exclude 'META-INF', 'META-INF/**'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '3.1'
|
|
} |