corda/cordform-common/build.gradle

20 lines
528 B
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'net.corda.plugins.publish-utils'
repositories {
mavenCentral()
}
2017-06-27 23:34:56 +00:00
// This tracks the gradle plugins version and not Corda
2017-06-28 01:19:27 +00:00
group 'net.corda.plugins'
2017-06-27 23:34:56 +00:00
version gradle_plugins_version
dependencies {
// TypeSafe Config: for simple and human friendly config files.
compile "com.typesafe:config:$typesafe_config_version"
// Bouncy Castle: for X.500 distinguished name manipulation
compile "org.bouncycastle:bcprov-jdk15on:$bouncycastle_version"
}