2019-07-25 18:59:37 +02:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
group = 'com.goodandevil.skyblock'
|
2019-08-15 10:01:25 +02:00
|
|
|
version = 'Build-78.4'
|
2019-07-25 18:59:37 +02:00
|
|
|
}
|
2019-04-15 12:31:47 +02:00
|
|
|
|
2019-07-25 18:59:37 +02:00
|
|
|
subprojects {
|
|
|
|
sourceCompatibility = 1.8
|
2019-04-15 12:31:47 +02:00
|
|
|
|
2019-07-25 18:59:37 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
2019-04-15 12:31:47 +02:00
|
|
|
|
2019-07-25 18:59:37 +02:00
|
|
|
maven {
|
|
|
|
url = 'http://repo.songoda.com/artifactory/private'
|
|
|
|
}
|
2019-08-13 09:12:47 +02:00
|
|
|
|
|
|
|
maven {
|
|
|
|
url = 'https://jitpack.io'
|
|
|
|
}
|
2019-04-15 12:31:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-07-25 18:59:37 +02:00
|
|
|
compile project(':FabledSkyBlock-Legacy')
|
|
|
|
compile project(':FabledSkyBlock-Core')
|
|
|
|
}
|
2019-04-27 22:05:41 +02:00
|
|
|
|
2019-07-25 18:59:37 +02:00
|
|
|
configurations {
|
|
|
|
childJars
|
2019-04-15 12:31:47 +02:00
|
|
|
}
|
|
|
|
|
2019-07-25 18:59:37 +02:00
|
|
|
dependencies {
|
|
|
|
subprojects.each {
|
|
|
|
childJars project(it.path)
|
2019-04-22 21:51:49 +02:00
|
|
|
}
|
2019-04-24 06:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2019-07-25 18:59:37 +02:00
|
|
|
dependsOn configurations.childJars
|
|
|
|
from {
|
|
|
|
configurations.childJars.collect {
|
|
|
|
zipTree(it)
|
2019-04-24 06:38:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|