Skip to content

Commit

Permalink
jarファイル生成タスクを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
a3636tako committed Nov 1, 2018
1 parent 1064e25 commit c08302a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,14 @@ dependencies {

compile 'com.electronwill.night-config:toml:3.4.0'
}

jar {
// Specify App's entry point
manifest {
attributes "Main-Class": "jp.kusumotolab.kgenprog.CUILauncher"
}
from { (configurations.runtime).collect { it.isDirectory() ? it : zipTree(it) } } {
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
}
}

0 comments on commit c08302a

Please sign in to comment.