mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
19 lines
279 B
Groovy
19 lines
279 B
Groovy
|
group 'com.r3cev.prototyping'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
apply plugin: 'java'
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
sourceCompatibility = 1.5
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':core')
|
||
|
compile project(':contracts')
|
||
|
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
}
|