mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-03 05:44:10 -08:00
Fix commons-cli not being vendored (#744)
This commit is contained in:
parent
062d4ae4e9
commit
ef818ac4c5
|
@ -121,9 +121,11 @@ fun MavenPom.setupPom(project: Project) {
|
||||||
}
|
}
|
||||||
|
|
||||||
extensions.configure<DependencyRelocationExtension> {
|
extensions.configure<DependencyRelocationExtension> {
|
||||||
library("libs", "commons-io") {
|
for (commonsLib in listOf("commons-io", "commons-cli")) {
|
||||||
|
library("libs", commonsLib) {
|
||||||
relocate("org.apache.commons", "org.teavm.apachecommons")
|
relocate("org.apache.commons", "org.teavm.apachecommons")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
for (asmLib in listOf("asm", "asm-tree", "asm-analysis", "asm-commons", "asm-util")) {
|
for (asmLib in listOf("asm", "asm-tree", "asm-analysis", "asm-commons", "asm-util")) {
|
||||||
library("libs", asmLib) {
|
library("libs", asmLib) {
|
||||||
relocate("org.objectweb.asm", "org.teavm.asm")
|
relocate("org.objectweb.asm", "org.teavm.asm")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user