This repository was archived by the owner on Apr 25, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/main/java/kr/pe/ecmaxp/openpython/arch/msgpack Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ repositories {
4949shadowJar {
5050 exclude ' dummyThing'
5151
52- relocate " org.msgpack" , " kr.pe.ecmaxp.repack.org.msgpack"
52+ // relocate "org.msgpack", "kr.pe.ecmaxp.repack.org.msgpack"
5353}
5454
5555dependencies {
@@ -59,7 +59,7 @@ dependencies {
5959 api " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
6060 api " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version "
6161
62- compile " org.msgpack:msgpack-core:0.8.16"
62+ // compile "org.msgpack:msgpack-core:0.8.16"
6363}
6464
6565processResources {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package kr.pe.ecmaxp.openpython.arch.msgpack
33import kr.pe.ecmaxp.openpython.arch.OpenPythonVirtualMachine
44import li.cil.oc.api.machine.Signal
55import li.cil.oc.api.machine.Value
6- import org.msgpack.core.MessagePack
6+ import kr.pe.ecmaxp.openpython.repack. org.msgpack.core.MessagePack
77
88
99class MsgpackPacker (val vm : OpenPythonVirtualMachine ? = null ) {
Original file line number Diff line number Diff line change 11package kr.pe.ecmaxp.openpython.arch.msgpack
22
33import kr.pe.ecmaxp.openpython.arch.OpenPythonVirtualMachine
4- import org.msgpack.core.MessagePack
5- import org.msgpack.value.ValueType
4+ import kr.pe.ecmaxp.openpython.repack. org.msgpack.core.MessagePack
5+ import kr.pe.ecmaxp.openpython.repack. org.msgpack.value.ValueType
66
77
88class MsgpackUnpacker (buffer : ByteArray , val vm : OpenPythonVirtualMachine ? = null ) {
You can’t perform that action at this time.
0 commit comments