mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
50 lines
1.1 KiB
Groovy
50 lines
1.1 KiB
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'idea'
|
||
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
apply plugin: 'net.corda.plugins.cordapp'
|
||
|
apply plugin: 'net.corda.plugins.cordformation'
|
||
|
apply plugin: 'maven-publish'
|
||
|
|
||
|
sourceSets {
|
||
|
integrationTest {
|
||
|
kotlin {
|
||
|
compileClasspath += main.output + test.output
|
||
|
runtimeClasspath += main.output + test.output
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
||
|
|
||
|
// For CSV parsing.
|
||
|
compile "com.opencsv:opencsv:4.0"
|
||
|
|
||
|
// Corda integration dependencies
|
||
|
cordaCompile project(':core')
|
||
|
cordaCompile project(':client:rpc')
|
||
|
|
||
|
// Cordapp dependencies
|
||
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
||
|
|
||
|
// Test dependencies
|
||
|
testCompile "junit:junit:$junit_version"
|
||
|
}
|
||
|
|
||
|
idea {
|
||
|
module {
|
||
|
downloadJavadoc = true // defaults to false
|
||
|
downloadSources = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes(
|
||
|
'Automatic-Module-Name': 'net.corda.samples.demos.businessnetwork'
|
||
|
)
|
||
|
}
|
||
|
}
|