5

我想将我的库切换到 Gradle Script Kotlin,但我找不到配置 uploadArchive 任​​务的方法。

这是我想翻译的 groovy kotlin 脚本:

uploadArchives {
    repositories {
        mavenDeployer {
            repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
                    authentication(userName: ossrhUsername, password: ossrhPassword)
            }

            snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
                authentication(userName: ossrhUsername, password: ossrhPassword)
            }

            pom.project {
                /* A lot of stuff... */
            }
        }
    }
}

到目前为止,我已经明白它应该从

task<Upload>("uploadArchives") {
    /* ??? */
}

......就是这样!

AFAIU,在 Groovy 中,Upload任务由MavenPlugin. 它在 Kotlin 中是如何工作的?

4

1 回答 1

4

0.11.x(在 Gradle 4.2 中)为具有约定插件的任务添加了更好的支持,并为重型 Groovy DSL 提供了更好的支持。完整的发行说明在GitHub 上。以下是这些笔记的相关片段:

更好地支持 Groovy-heavy DSL#142#47#259)。随着 withGroovyBuilder 和withConvention实用程序扩展的引入。withGroovyBuilder提供具有 Groovy 语义的动态调度 DSL,以便更好地与依赖于 Groovy 构建器的插件集成,例如核心maven插件。

这是直接取自源代码的示例

plugins {
  java
  maven
}

group = "org.gradle.kotlin-dsl"

version = "1.0"

tasks {

  "uploadArchives"(Upload::class) {

    repositories {

      withConvention(MavenRepositoryHandlerConvention::class) {

        mavenDeployer {

          withGroovyBuilder {
            "repository"("url" to uri("$buildDir/m2/releases"))
            "snapshotRepository"("url" to uri("$buildDir/m2/snapshots"))
          }

          pom.project {
            withGroovyBuilder {
              "parent" {
                "groupId"("org.gradle")
                "artifactId"("kotlin-dsl")
                "version"("1.0")
              }
              "licenses" {
                "license" {
                  "name"("The Apache Software License, Version 2.0")
                  "url"("http://www.apache.org/licenses/LICENSE-2.0.txt")
                  "distribution"("repo")
                }
              }
            }
          }
        }
      }
    }
  }
}
于 2017-09-29T14:37:31.237 回答