hotfix, blame past me
This commit is contained in:
parent
c3b6459738
commit
fd7fd69306
|
@ -32,7 +32,8 @@ shadowJar {
|
||||||
classifier ''
|
classifier ''
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
include(project(":core"))
|
include project(":core")
|
||||||
|
include project(":api")
|
||||||
}
|
}
|
||||||
|
|
||||||
exclude 'dummyThing'
|
exclude 'dummyThing'
|
||||||
|
|
|
@ -31,7 +31,8 @@ shadowJar {
|
||||||
classifier ''
|
classifier ''
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
include(project(":core"))
|
include project(":core")
|
||||||
|
include project(":api")
|
||||||
}
|
}
|
||||||
|
|
||||||
exclude 'dummyThing'
|
exclude 'dummyThing'
|
||||||
|
|
|
@ -31,7 +31,8 @@ shadowJar {
|
||||||
classifier ''
|
classifier ''
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
include(project(":core"))
|
include project(":core")
|
||||||
|
include project(":api")
|
||||||
}
|
}
|
||||||
|
|
||||||
exclude 'dummyThing'
|
exclude 'dummyThing'
|
||||||
|
|
|
@ -28,6 +28,7 @@ configurations {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
shade project(":core")
|
shade project(":core")
|
||||||
|
shade project(":api")
|
||||||
}
|
}
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
|
|
|
@ -8,6 +8,11 @@ buildscript {
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id "com.github.johnrengelman.shadow" version "1.2.4"
|
||||||
|
}
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
||||||
|
@ -29,3 +34,11 @@ compileKotlin {
|
||||||
jvmTarget = "1.8"
|
jvmTarget = "1.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
shadowJar {
|
||||||
|
classifier ''
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
include project(":api")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue