Не могу отправить Kotlin Ktor + Открытую жирную банку в Cloud Foundry - PullRequest
0 голосов
/ 22 мая 2019

Я пытаюсь подтолкнуть ктор приложение к cp.Я взял начальное приложение, найденное здесь https://github.com/raharrison/kotlin-ktor-exposed-starter, и откорректировал файл gradle.build, чтобы сделать толстую банку основным способом, которым облачный литейный завод может запускаться и запускаться.

buildscript {
    ext.kotlin_version = '1.3.31'
    ext.ktor_version = '1.2.0'
    ext.exposed_version = '0.13.7'
    ext.h2_version = '1.4.196'

    repositories {
        mavenCentral()
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

apply plugin: 'java'
apply plugin: 'kotlin'

apply plugin: 'application'

apply plugin: 'eclipse'

version = '1.0'
sourceCompatibility = 1.8

//create a single Jar with all dependencies
task fatjar(type: Jar) {
    manifest { attributes 'Implementation-Title': 'Gradle Jar File Example', 'Implementation-Version': version, 'Main-Class': 'MainKt' }
    baseName = project.name + '-all'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
}

compileKotlin {
    kotlinOptions.jvmTarget = "1.8"
}

compileTestKotlin {
    kotlinOptions.jvmTarget = "1.8"
}

repositories {
    jcenter()
}

test {
    useJUnitPlatform()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
    compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

    compile "io.ktor:ktor-server-netty:$ktor_version"
    compile "io.ktor:ktor-jackson:$ktor_version"
    compile "io.ktor:ktor-websockets:$ktor_version"

    compile "com.h2database:h2:$h2_version"
    compile "org.jetbrains.exposed:exposed:$exposed_version"
    compile 'com.zaxxer:HikariCP:3.3.1'

    compile "ch.qos.logback:logback-classic:1.2.1"
    testCompile "org.assertj:assertj-core:3.11.1"
    testCompile "io.rest-assured:rest-assured:3.3.0"
    testCompile "org.junit.jupiter:junit-jupiter-api:5.4.0"
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.0'
}

После gradle fatJarЯ могу запустить эту банку локально, но когда я использую cf push, я получаю следующую ошибку

Mapping routes...
Comparing local files to remote cache...
Aborting push: File META-INF/kotlinx-coroutines-io.kotlin_module has been modified since the start of push. Validate the correct state of the file and try again.
FAILED

Что здесь происходит?кажется, в моей банке есть файл, который постоянно изменяется, даже не запуская банку.Я могу предположить, почему модуль сопрограмм будет постоянно изменяться, но я не знаю, как это остановить.

...