我不知道如何在带有 kotlin DSL 的 gradle 构建中使用shadow插件。所有文档都使用 groovy dsl。
这是 build.gradle.kts 的内容:
import groovy.lang.GroovyObject
import org.gradle.jvm.tasks.Jar
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.4.10"
id("com.github.johnrengelman.shadow") version "6.1.0"
application
}
allprojects {
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
group = "com.example"
version = "1.0-SNAPSHOT"
}
dependencies {
// Align versions of all Kotlin components
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
// Use the Kotlin JDK 8 standard library.
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
}
application {
mainClass.set("com.example.MainKt")
}
tasks.withType<Jar> {
manifest {
attributes(
mapOf(
"ImplementationTitle" to project.name,
"Implementation-Version" to project.version)
)
}
}
这是内容src/main/kotlin/com/example/Main.kt
package com.example
fun main() {
println("Hello world")
}
但是当我尝试这样做时gradle build
,我收到了这个错误:
A problem was found with the configuration of task ':shadowJar' (type 'ShadowJar').
> No value has been specified for property 'mainClassName'.
我认为这很奇怪,因为我已经在application
参数中输入了应用程序主类。
我试图添加这个:
tasks.withType<ShadowJar>() {
mainClassName = "com.example.MainKt"
}
但是当我尝试使用此选项进行构建时,它会抱怨找不到ShadowJar
类型。
Line 22: tasks.withType<ShadowJar>() {
^ Unresolved reference: ShadowJar
我在这里做错了什么?