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 {
49
49
shadowJar {
50
50
exclude ' dummyThing'
51
51
52
- relocate " org.msgpack" , " kr.pe.ecmaxp.repack.org.msgpack"
52
+ // relocate "org.msgpack", "kr.pe.ecmaxp.repack.org.msgpack"
53
53
}
54
54
55
55
dependencies {
@@ -59,7 +59,7 @@ dependencies {
59
59
api " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
60
60
api " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version "
61
61
62
- compile " org.msgpack:msgpack-core:0.8.16"
62
+ // compile "org.msgpack:msgpack-core:0.8.16"
63
63
}
64
64
65
65
processResources {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package kr.pe.ecmaxp.openpython.arch.msgpack
3
3
import kr.pe.ecmaxp.openpython.arch.OpenPythonVirtualMachine
4
4
import li.cil.oc.api.machine.Signal
5
5
import li.cil.oc.api.machine.Value
6
- import org.msgpack.core.MessagePack
6
+ import kr.pe.ecmaxp.openpython.repack. org.msgpack.core.MessagePack
7
7
8
8
9
9
class MsgpackPacker (val vm : OpenPythonVirtualMachine ? = null ) {
Original file line number Diff line number Diff line change 1
1
package kr.pe.ecmaxp.openpython.arch.msgpack
2
2
3
3
import 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
6
6
7
7
8
8
class MsgpackUnpacker (buffer : ByteArray , val vm : OpenPythonVirtualMachine ? = null ) {
You can’t perform that action at this time.
0 commit comments