mirror of
https://github.com/status-im/ethereumj-personal.git
synced 2025-02-04 08:04:10 +00:00
75443aaa13
See updated ethereumj-studio/README.md for details. Note that this commit removes the `build-post-package.xml` ant file (for now) to simplify the Gradle arrangement. This functionality can be re-introduced later and more simply using Gradle's native DSL. In the meantime, both the -core and -studio projects can be run using `gradle run` or run as executable jars by running `gradle shadowJar` followed by the usual `java -jar` execution of the resulting `-all` jar file found in each project's respective `build/libs` directory.
14 lines
335 B
Groovy
14 lines
335 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'com.github.johnrengelman.shadow' version '1.2.0'
|
|
}
|
|
|
|
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"
|
|
}
|