ethereumj-personal/ethereumj-core
Chris Beams 0900039bdd
Introduce top-level Gradle build
- Convert ethereumj-studio build from Maven to Gradle as well
 - Extract common build elements to top-level build.gradle
 - Update top-level README accordingly
2014-12-27 01:44:24 +01:00
..
gradle/wrapper Generate Gradle wrapper 2014-12-26 21:48:59 +01:00
src Ignore already-broken tests 2014-12-26 22:08:11 +01:00
README.md Support installation of artifacts to local maven repo 2014-12-26 21:50:15 +01:00
bintray-publish-version.xml Apply basic formatting 2014-12-26 11:22:44 +01:00
build.gradle Introduce top-level Gradle build 2014-12-27 01:44:24 +01:00
gradlew Generate Gradle wrapper 2014-12-26 21:48:59 +01:00
gradlew.bat Generate Gradle wrapper 2014-12-26 21:48:59 +01:00
track-untrack-local.bat Strip trailing whitespace 2014-12-26 09:45:14 +01:00

README.md

ethereum-core

Include ethereum-core in your project

  1. Add http://dl.bintray.com/ethereum/maven as a repository to your build script
  2. Add a dependency on org.ethereum:ethereumj:$version, where $version is one of those listed at https://bintray.com/ethereum/maven/org.ethereum/view

Examples

See ethereumj-studio.

Build from source

Compile, test and package

Run ./gradlew build.

  • find jar artifacts at build/libs
  • find unit test and code coverage reports at build/reports

Run an ethereum node

  • run ./gradlew run, or
  • build a standalone executable jar with ./gradlew shadow and execute the -all jar in build/libs using java -jar [jarfile].

Import sources into IntelliJ IDEA

Use IDEA 14 or better and import project based on Gradle sources.

Note that in order to build the project without errors in IDEA, you will need to run gradle antlr4 manually.

Install artifacts into your local ~/.m2 repository

Run ./gradlew install.

Publish ethereumj-core builds

TODO: integrate bintray gradle plugin