2014-12-26 13:23:44 +00:00
|
|
|
plugins {
|
|
|
|
id 'application'
|
|
|
|
id 'eclipse'
|
|
|
|
id 'jacoco'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '1.2.0'
|
|
|
|
id 'me.champeau.gradle.antlr4' version '0.1'
|
|
|
|
id 'com.github.kt3k.coveralls' version '2.0.1x'
|
|
|
|
}
|
|
|
|
|
|
|
|
wrapper.gradleVersion = '2.2.1'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
|
|
|
|
version = '0.7.15-SNAPSHOT'
|
|
|
|
|
|
|
|
mainClassName = 'org.ethereum.Start'
|
|
|
|
|
2014-12-26 16:14:39 +00:00
|
|
|
ext.generatedSrcDir = file('src/gen/java')
|
2014-12-26 13:23:44 +00:00
|
|
|
|
2014-12-26 16:14:39 +00:00
|
|
|
sourceSets.main.java.srcDirs += generatedSrcDir
|
2014-12-26 13:23:44 +00:00
|
|
|
|
2014-12-26 16:14:39 +00:00
|
|
|
antlr4 {
|
|
|
|
extraArgs = ['-package', 'org.ethereum.serpent']
|
|
|
|
output = file("${generatedSrcDir}/org/ethereum/serpent")
|
2014-12-26 13:23:44 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 16:14:39 +00:00
|
|
|
compileJava.dependsOn antlr4
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
compile.extendsFrom antlr4
|
2014-12-26 13:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
slf4jVersion = '1.7.7'
|
|
|
|
leveldbVersion = '0.7'
|
|
|
|
scastleVersion = '1.51.0.0'
|
|
|
|
log4jVersion = '1.2.17'
|
|
|
|
springVersion = '4.1.2.RELEASE'
|
|
|
|
hibernateVersion = '4.3.7.Final'
|
|
|
|
junitVersion = '4.11'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "io.netty:netty-all:4.0.23.Final"
|
|
|
|
compile "com.madgag.spongycastle:core:${scastleVersion}" // for SHA3 and SECP256K1
|
|
|
|
compile "org.iq80.leveldb:leveldb:${leveldbVersion}"
|
|
|
|
compile "com.cedarsoftware:java-util:1.8.0" // for deep equals
|
|
|
|
compile "org.antlr:antlr4-runtime:4.3" // for serpent compilation
|
|
|
|
compile "com.yuvalshavit:antlr-denter:1.1"
|
|
|
|
compile "org.javassist:javassist:3.15.0-GA"
|
|
|
|
compile "commons-logging:commons-logging:1.0" // TODO: provided scope
|
|
|
|
compile "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
|
|
compile "org.slf4j:jcl-over-slf4j:${slf4jVersion}" // TODO: runtime scope
|
|
|
|
compile "org.slf4j:slf4j-log4j12:${slf4jVersion}" // TODO: runtime scope
|
|
|
|
compile "log4j:log4j:${log4jVersion}"
|
|
|
|
compile "log4j:apache-log4j-extras:${log4jVersion}"
|
|
|
|
compile "org.codehaus.jackson:jackson-mapper-asl:1.9.13"
|
|
|
|
compile "com.google.code.findbugs:jsr305:3.0.0"
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind:2.2.0"
|
|
|
|
compile "org.apache.commons:commons-collections4:4.0"
|
|
|
|
compile "org.springframework:spring-context:${springVersion}"
|
|
|
|
compile "org.springframework:spring-tx:${springVersion}"
|
|
|
|
compile "org.springframework:spring-orm:${springVersion}"
|
|
|
|
compile "org.hsqldb:hsqldb:1.8.0.10" // best performance - do not upgrade!
|
|
|
|
compile "org.hibernate:hibernate-core:${hibernateVersion}"
|
|
|
|
compile "org.hibernate:hibernate-entitymanager:${hibernateVersion}"
|
|
|
|
compile "commons-dbcp:commons-dbcp:1.4"
|
2014-12-26 16:20:05 +00:00
|
|
|
compile("com.googlecode.json-simple:json-simple:1.1.1") {
|
|
|
|
exclude group:'junit', module:'junit'
|
|
|
|
}
|
2014-12-26 13:23:44 +00:00
|
|
|
testCompile "junit:junit:${junitVersion}"
|
|
|
|
testCompile "org.springframework:spring-test:${springVersion}"
|
|
|
|
}
|