22

我想将源附加到一个 kotlin 库项目中,看起来我成功了,因为我现在在这里有源 jar:

https://jitpack.io/com/github/walleth/kethereum/bip44/0.21/

我没有导出源之前的版本 - 所以我认为它是成功的。

https://jitpack.io/com/github/walleth/kethereum/bip44/0.20/

不幸的是,AS 没有显示来源。我正在像这样生成它们:

allprojects {
    repositories {
        jcenter()
        maven { url 'https://jitpack.io' }
    }

    apply plugin: "kotlin"
    apply plugin: "jacoco"
    apply plugin: "maven"
    apply plugin: "com.github.ben-manes.versions"

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

        testCompile 'org.assertj:assertj-core:3.8.0'
        testCompile 'junit:junit:4.12'
    }

    task sourcesJar(type: Jar, dependsOn: classes) {
        classifier = 'sources'
        from sourceSets.main.allSource
    }

    task javadocJar(type: Jar, dependsOn: javadoc) {
        classifier = 'javadoc'
        from javadoc.destinationDir
    }

    artifacts {
        archives sourcesJar
        archives javadocJar
    }
}

source-jars 也包含 kotlin 文件。这一切都在这个项目中:https ://github.com/walleth/kethereum

4

1 回答 1

0

这就是我们为 Maven Publication 所拥有的。

task androidSourcesJar(type: Jar) {
    archiveClassifier.set('sources')
    from android.sourceSets.main.java.srcDirs
}

然后你可以使用artifact androidSourcesJar.

于 2020-06-30T05:31:18.350 回答