Add basic application
This commit is contained in:
commit
badeb5e843
3 changed files with 314 additions and 0 deletions
16
build.gradle
Normal file
16
build.gradle
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'application'
|
||||
}
|
||||
|
||||
description = """TuxGuitar Drumsheets"""
|
||||
group = 'xyz.suruatoel.tuxguitar.drumsheets'
|
||||
version = '0.1.0'
|
||||
|
||||
dependencies {
|
||||
implementation files('/usr/share/tuxguitar/lib/tuxguitar-lib.jar')
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass.set("xyz.suruatoel.tuxguitar.drumsheets.Drumsheets")
|
||||
}
|
||||
Loading…
Reference in a new issue