mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-03-14 18:06:34 -04:00
added application plugin and ability to pass gradle run command line args
This commit is contained in:
parent
e42bae9148
commit
3d77cc7296
@ -1,11 +1,20 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'application'
|
||||
|
||||
version = '0.1.0-SNAPSHOT'
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
sourceSets.main.resources.srcDirs += 'src/main/java'
|
||||
|
||||
mainClassName = "io.bitsquare.BitSquare"
|
||||
|
||||
run {
|
||||
if ( project.hasProperty('args') ) {
|
||||
args project.args.split('\\s+')
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
maven { url 'http://partnerdemo.artifactoryonline.com/partnerdemo/libs-snapshots-local' }
|
||||
|
Loading…
x
Reference in New Issue
Block a user