Gradle- ไม่มีแอตทริบิวต์รายการหลัก
ฉันแทบจะบ้ากับข้อผิดพลาดนี้ที่ฉันได้รับเมื่อเรียกใช้ไฟล์ JAR ที่สร้างขึ้นจาก Gradle ข้อผิดพลาดอ่าน "ไม่มีแอตทริบิวต์รายการหลักใน RxJavaDemo.jar" ฉันพยายามจัดการคุณสมบัติ Manifest แต่ฉันคิดว่าฉันลืมเพิ่มการอ้างอิงหรือบางอย่างลงไป ฉันทำอะไรผิดกันแน่? apply plugin: 'java' apply plugin: 'application' mainClassName = 'demo.MainDashboard' dependencies { compile files ("H:/Processes/Development/libraries/hikari-cp/HikariCP-2.4.1.jar") compile files ("H:/Processes/Development/libraries/controls-fx/controlsfx.jar") compile files ("H:/Processes/Development/libraries/database_connections/sqlite-jdbc-3.8.6.jar") compile files ("H:/Processes/Development/libraries/guava/guava-18.0.jar") compile files ("H:/Processes/Development/libraries/rxjava/rxjava-1.0.12.jar") compile files ("H:/Processes/Development/libraries/rxjava-extras/rxjava-extras-0.5.15.jar") compile files ("H:/Processes/Development/libraries/rxjavafx/RxJavaFX-1.0.0-RC1-SNAPSHOT.jar") compile files ("H:/Processes/Development/libraries/rxjavaguava/rxjava-guava-1.0.3.jar") compile files ("H:/Processes/Development/libraries/rxjava-jdbc/rxjava-jdbc-0.6.3.jar") compile …