Skip to content

Commit

Permalink
Add executable creation task (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRisenPhoenix authored Feb 7, 2024
1 parent 8454d9e commit 6f88b09
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ plugins {

// Spotbugs is a static analyzer for java
id 'com.github.spotbugs' version '6.0.7'

// With this plugin, we can build a Windows executable
id 'edu.sc.seis.launch4j' version '3.0.5'
}

javafx {
Expand Down Expand Up @@ -97,4 +100,8 @@ spotbugsMain {
stylesheet = 'fancy-hist.xsl'
}
}
}

launch4j {
mainClassName = 'mainMethod.StartClass'
}

0 comments on commit 6f88b09

Please sign in to comment.