<@U0BLPSJAK> I’m trying to build the mmo-poc but i...
# ktor
c
@Deactivated User I’m trying to build the mmo-poc but it say
Could not find io.ktor.client:ktor-client-redis:0.2.0
, and indeed there seems to be no version 0.2.0 of that
d
./gradlew install
c
ah ok or a composite build
d
yeah, that would work too. I have to publish that project in my own bintray until it is officially published and add CI to ensure it works externally and it is not broken like it is now
c
now the compilation seems to fail:``` e: /Users/christoph/Projects/kotlin/ktor/mmo-poc/mmo/jvm/src/mmo/server/Backend.kt: (80, 21): Cannot access class 'kotlinx.coroutines.experimental.CoroutineDispatcher'. Check your module classpath for missing or conflicting dependencies ```
d
using gradle?
or intellij?
c
gradle
d
because it is using Kotlin 1.2-M2
let me check
c
just running ./gradlew runAll like the readme says
d
I had a branch in my fork compiled for eap13
this is the one you have to install
I will fix the build of the project later today, once I finish working and will add CI to ensure it works
c
does it need a specific jdk?
now I’m getting this:
Copy code
> Task :mmo-jvm:runServer FAILED
Error: Unable to initialize main class mmo.server.BackendKt
Caused by: java.lang.ClassFormatError: Interface cannot have a method named <init>, class file mmo/protocol/BasePacket
d
I use 1.8
uhm
c
that was with 10.0.2. seems to work with 1.8
now it seems to work! impressive
👏 1