Skip to content

Commit

Permalink
Update version for release + update supported geth/es in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Duda committed Mar 21, 2018
1 parent 6b5387e commit 7fb821f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Imports blocks and transactions from the Ethereum blockchain into ElasticSearch,
Demo video: [YouTube](https://www.youtube.com/watch?v=FFI9OnW9IuI)

Tested with
- ElasticSeach 5.6.2
- ElasticSeach 6.2.3
- MongoDB 3.4.10
- HazelCast 3.6.3
- geth 1.7.1.
- geth 1.8.2

### Building
Build with
Expand Down
10 changes: 5 additions & 5 deletions application.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"startBlock" : "1964770",
"blockEnd" : "1964900",
"storage" : "MONGODB",
"startBlock" : "2022252",
"blockEnd" : "2025555",
"storage" : "ELASTICSEARCH",
"ipc" : "\\\\.\\pipe\\geth.ipc",
"os" : "WINDOWS",
"txIndex" : "ether-tx-demo-iix",
"blockIndex" : "etdder-block-demo-iix",
"txIndex" : "eth-tx",
"blockIndex" : "eth-block",
"backpressureBlocks" : 5,
"backPressureTx" : 35,
"txImport" : true,
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'

project.version = "1.0.1-SNAPSHOT"
project.version = "1.0.2"
project.group = 'com.codingchili.ethereumingest'

sourceCompatibility = 1.8
Expand All @@ -12,16 +12,15 @@ tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}


repositories {
mavenLocal()
maven { url 'https://jitpack.io' }
mavenCentral()
}

dependencies {
compile 'com.github.codingchili.chili-core:core:1.0.18-SNAPSHOT@jar'
compile 'org.web3j:core:2.3.1'
compile 'com.github.codingchili.chili-core:core:1.0.22@jar'
compile 'org.web3j:core:3.3.1'
}

test {
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties

This file was deleted.

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Tue Mar 14 08:11:26 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/codingchili/ethereumingest/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Service implements CoreService {
public static void main(String[] args) throws IOException {
system().setHandlers(1).setListeners(1);
launcher().setApplication("Ethereum Ingest")
.setVersion("1.0.1")
.setVersion("1.0.2")
.setAuthor("codingchili@github")
.setClustered(true)
.deployable(Service.class);
Expand Down

0 comments on commit 7fb821f

Please sign in to comment.