mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
fdc31091a6
# Conflicts: # constants.properties # gradle-plugins/cordformation/src/main/kotlin/net/corda/plugins/Cordform.kt # gradle-plugins/cordformation/src/main/kotlin/net/corda/plugins/Node.kt
23 lines
532 B
Groovy
23 lines
532 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
// This tracks the gradle plugins version and not Corda
|
|
version gradle_plugins_version
|
|
group 'net.corda.plugins'
|
|
|
|
dependencies {
|
|
// JSR 305: Nullability annotations
|
|
compile "com.google.code.findbugs:jsr305:$jsr305_version"
|
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
compile "com.typesafe:config:$typesafe_config_version"
|
|
}
|
|
|
|
publish {
|
|
name project.name
|
|
} |