Could not find or load main class with a Jar File

后端 未结 16 1189
有刺的猬
有刺的猬 2020-12-01 09:09

I\'m trying to load a jar using

@echo off
java -jar Test.jar
pause

With the manifest of

Manifest-Version: 1.0
Main-Class:          


        
16条回答
  •  粉色の甜心
    2020-12-01 09:19

    I was getting this error because my main class is in test package, and I am creating artifact using IntelliJ. After I checked the box Include Tests when creating artifact, it got resolved.

    Screenshot from IntelliJ showing Include Tests checkbox

提交回复
热议问题