mirror of
https://github.com/status-im/ethereumj-personal.git
synced 2025-01-09 19:35:53 +00:00
936de35cff
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.
16 lines
362 B
Groovy
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"
|
|
}
|