mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
32 lines
738 B
Groovy
32 lines
738 B
Groovy
group 'net.corda'
|
|
version '0.6-SNAPSHOT'
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
buildscript {
|
|
ext.asm_version = '5.1'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// Asm: bytecode manipulation library.
|
|
compile "org.ow2.asm:asm:$asm_version"
|
|
compile "org.ow2.asm:asm-tree:$asm_version"
|
|
compile "org.ow2.asm:asm-util:$asm_version"
|
|
compile "org.ow2.asm:asm-commons:$asm_version"
|
|
|
|
// JOptSimple: command line option parsing
|
|
compile "net.sf.jopt-simple:jopt-simple:$jopt_simple_version"
|
|
|
|
// Simple Logging Facade: makes the code independent of the chosen logging framework.
|
|
compile "org.slf4j:slf4j-api:1.7.21"
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|