FabledSkyBlock/build.gradle

43 lines
676 B
Groovy
Raw Normal View History

allprojects {
apply plugin: 'java'
group = 'com.goodandevil.skyblock'
version = 'Build-78'
}
2019-04-15 12:31:47 +02:00
subprojects {
sourceCompatibility = 1.8
2019-04-15 12:31:47 +02:00
repositories {
mavenCentral()
jcenter()
2019-04-15 12:31:47 +02:00
maven {
url = 'http://repo.songoda.com/artifactory/private'
}
2019-04-15 12:31:47 +02:00
}
}
dependencies {
compile project(':FabledSkyBlock-Legacy')
compile project(':FabledSkyBlock-Core')
}
configurations {
childJars
2019-04-15 12:31:47 +02:00
}
dependencies {
subprojects.each {
childJars project(it.path)
}
2019-04-24 06:38:43 +02:00
}
jar {
dependsOn configurations.childJars
from {
configurations.childJars.collect {
zipTree(it)
2019-04-24 06:38:43 +02:00
}
}
}