Some fixes for new libs shading

This commit is contained in:
Kenzie Togami
2019-04-20 23:33:54 -07:00
parent 1e7b4fc835
commit 5c19866809
6 changed files with 13 additions and 22 deletions

View File

@ -1,5 +1,3 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
apply plugin: 'eclipse'
apply plugin: 'idea'
@ -28,8 +26,3 @@ sourceSets {
}
}
}
task jar(type: ShadowJar, overwrite: true) {
from sourceSets.main.output
configurations = [project.configurations.runtime]
}