mirror of
https://github.com/corda/corda.git
synced 2024-12-30 09:48:59 +00:00
16 lines
414 B
Groovy
16 lines
414 B
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'maven-publish'
|
||
|
apply plugin: 'net.corda.plugins.publish-utils'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
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"
|
||
|
}
|