0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

IntellijIDEAで、gradleでメインクラスを指定したjarを出力する方法

Posted at

#目的
gradleプロジェクトを作成しjar出力をし、java -jar ***.jarを実行したときに
***.jarにメイン・マニフェスト属性がありませんとなってしまう。
これを解決するためにメインクラスを指定する。
#環境

  • Windows10 64bit
  • IntelliJ IDEA 2020.2 (Ultimate Edition)

#初期状態

plugins {
    id 'java'
}

group 'xyz.miyayu'//環境によって異なる
version '1.0-SNAPSHOT'//環境によって異なる

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

#メインクラスを指定してあげる

//~略~
version '1.0-SNAPSHOT'

//追加する
jar{
    manifest{
        attributes 'Main-Class' : 'xyz.miyayu.hogehogeProject.MainClass'//クラス名を指定する
    }
}
//追加ここまで

repositories {
//~略~

#おしまい
お疲れ様でした。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?