mirror of
https://github.com/corda/corda.git
synced 2025-03-16 17:15:19 +00:00
* Fix changelog file * Fix file path to changelog * Standardise the naming scheme for notary cordapps. * Revert "Standardise the naming scheme for notary cordapps." This reverts commit 7cd42f6 * Standardise the naming scheme for notary cordapps in a better way. * Publish to artifactory
42 lines
876 B
Groovy
42 lines
876 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlin-jpa'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
cordaCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
// Corda integration dependencies
|
|
cordaCompile project(':node')
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
testCompile project(':node-driver')
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true // defaults to false
|
|
downloadSources = true
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name 'corda-notary-jpa'
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-notary-jpa'
|
|
}
|
|
|
|
cordapp {
|
|
info {
|
|
name "net/corda/notary/jpa"
|
|
vendor "R3"
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
minimumPlatformVersion 1
|
|
}
|
|
}
|