2014-09-10 05:34:45 +00:00
|
|
|
|
|
|
|
The core library API for Ethereum project can be included
|
2014-12-26 08:36:37 +00:00
|
|
|
into any other Java/Scala project by simple maven
|
|
|
|
script include:
|
2014-09-10 05:34:45 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
<dependency>
|
2014-09-10 05:37:19 +00:00
|
|
|
<groupId>org.ethereum</groupId>
|
|
|
|
<artifactId>ethereumj</artifactId>
|
|
|
|
<version>0.5.7</version>
|
|
|
|
<type>jar</type>
|
2014-09-10 05:34:45 +00:00
|
|
|
</dependency>
|
|
|
|
```
|
2014-09-10 05:37:19 +00:00
|
|
|
|
|
|
|
|
2014-12-26 08:36:37 +00:00
|
|
|
EthereumJ release repository can be found here:
|
2014-09-10 05:37:19 +00:00
|
|
|
* https://bintray.com/ethereum/maven/org.ethereum/view
|
2014-09-10 05:41:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
The showcase for ethereumj-core usage can be found in [ethereumj-studio](../ethereumj-studio)
|
2014-12-26 08:36:37 +00:00
|
|
|
|
2014-09-10 06:00:37 +00:00
|
|
|
###### :small_blue_diamond: Build instructions (maven)
|
2014-12-26 08:36:37 +00:00
|
|
|
1. build_1: [no test run] , [released to local repository] : ~> ` mvn clean install -Dmaven.test.skip=true `
|
|
|
|
2. build_2: [include test run] , [released to local repository] : ~> ` mvn clean install `
|
|
|
|
|
2014-09-10 06:20:38 +00:00
|
|
|
###### :small_blue_diamond: release instructions (ant) (!) credential required
|
2014-09-10 06:00:37 +00:00
|
|
|
1. ` mvn install ` - which release the lib to a local repositroy
|
|
|
|
2. after the release - ` ant -f bintray-publish-version.xml `
|
|
|
|
|
2014-12-26 08:36:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|