apache/openwhisk

Docs: Add example on how to add dependencies for Java

Open

#2,942 建立於 2017年11月7日

在 GitHub 查看
 (0 留言) (0 反應) (0 負責人)Scala (1,177 fork)batch import
documentationgood first issuehelp wanted

倉庫指標

Star
 (6,777 star)
PR 合併指標
 (平均合併 17小時 31分鐘) (30 天內合併 3 個 PR)

描述

It would be good is the Java section at least shows one way to build the jar using external dependencies.

Since we all in OpenWhisk are fans of gradle 🙄 maybe we can do one using gradle.

Here is a good example from @rabbah https://github.com/rabbah/wsk-qr/blob/master/build.gradle


apply plugin: 'java'

version = '1.0'

repositories {
    mavenCentral()
}

configurations {
    provided
    compile.extendsFrom provided
}

dependencies {
    provided 'com.google.code.gson:gson:2.6.2'
    compile 'com.google.zxing:core:3.3.0'
    compile 'com.google.zxing:javase:3.3.0'
}

jar {
    dependsOn configurations.runtime

    from {
        (configurations.runtime - configurations.provided).collect {
            it.isDirectory() ? it : zipTree(it)
        }
    }
}

then build jar for Action

gradle jar

貢獻者指南