我知道这个问题被问了很多并且有很多答案,但我仍然明白,我不明白为什么......
我正在尝试.jar
从具有 gradle 依赖关系的项目中生成一个。
我有一个班级src/main/java/Launcher.java
,其中有我的main
方法。
有我的build.gradle
plugins {
id 'java'
id 'application'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'Launcher'
repositories {
mavenCentral()
}
dependencies {
compile 'commons-io:commons-io:2.1'
compile 'io.vertx:vertx-core:3.4.0'
compile 'io.vertx:vertx-web:3.4.0'
compile 'com.google.code.gson:gson:1.7.2'
compile "com.auth0:java-jwt:3.1.0"
compile 'org.mongodb:mongo-java-driver:3.4.1'
compile 'com.google.guava:guava:24.1-jre'
compile 'commons-io:commons-io:2.6'
}
jar {
manifest {
attributes "Main-Class": mainClassName
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
我$>gradle assemble
用来生成我的 jar 然后$>java -jar path/to/my/.jar
我得到错误“找不到或加载主类启动器”......
我不明白为什么,当我查看 .jar 时,我有 Launcher 类,而在 META-INF 中我有我的清单
很抱歉在 2018 年仍然问这个问题,但我正在失去理智试图找出问题所在。我希望有人能给出答案!