Chris Beams 936de35cff
Restore JDK 8 source compatibility in ethereumj-studio
This partially reverts commit c95f5ea, restoring use of Java 8 language
features and APIs to ethereumj-studio, while leaving etherumj-core
pinned to the Java 7 language level for Dalvik compatibility reasons.
For further details, see the prior commit and
https://github.com/ethereum/ethereumj/commit/c95f5ea#commitcomment-9119435.
2014-12-30 20:09:20 +01:00

16 lines
362 B
Groovy

plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.0'
}
sourceCompatibility = 1.8
mainClassName = 'org.ethereum.gui.ToolBar'
dependencies {
compile project(':ethereumj-core')
compile "com.maxmind.geoip:geoip-api:1.2.11"
compile "com.maxmind.geoip2:geoip2:0.6.0"
compile "com.fifesoft:rsyntaxtextarea:2.5.0"
}