Add mainClassName to common/build.gradle

Fix the following error:
  A problem was found with the configuration of task ':common:startScripts'.
  > No value has been specified for property 'mainClassName'.
This commit is contained in:
Devin Bileck 2018-10-19 15:54:47 -07:00
parent 48c196b5d1
commit 2be4d3d8aa
No known key found for this signature in database
GPG Key ID: 38750B26EA8B8C93

View File

@ -20,6 +20,8 @@ ext.platform = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'wi
group = 'network.bisq'
version = '-SNAPSHOT'
mainClassName = 'bisq.common'
ext {
protobufVersion = '3.5.1'
}