LoginSignup
0
0

More than 3 years have passed since last update.

Gradle - No Main Manifest Attribute

Last updated at Posted at 2021-01-14

Solved

com.johnny.Main is your program's entry point.

...
...
...
jar {
  manifest {
    attributes(
      'Main-Class': 'com.johnny.Main'
    )
  }
}
...
...
...

https://stackoverflow.com/questions/43081894/gradle-output-jar-has-no-main-class/
https://stackoverflow.com/questions/32567167/gradle-no-main-manifest-attribute

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0