build.gradle.kts 没有 manifest
时间: 2023-10-31 14:03:16 浏览: 199
史上最全的Android build.gradle配置教程
5星 · 资源好评率100%
在最新版本的 Gradle 中,可以使用以下代码来生成 manifest:
```kotlin
plugins {
id("java")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
manifest {
attributes(
mapOf(
"Manifest-Version" to "1.0",
"Main-Class" to "com.example.Main"
)
)
}
}
```
这将在生成 Jar 文件时自动生成 manifest 文件,并将指定的 Main-Class 设置为程序的入口点。如果需要添加其他属性,可以在 `attributes` 中添加键值对。
阅读全文