mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
23 lines
365 B
Groovy
23 lines
365 B
Groovy
|
plugins {
|
||
|
id 'groovy'
|
||
|
id 'java-gradle-plugin'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
gradlePlugin {
|
||
|
plugins {
|
||
|
canonicalizerPlugin {
|
||
|
id = 'net.corda.plugins.canonicalizer'
|
||
|
implementationClass = 'CanonicalizerPlugin'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "com.google.guava:guava:$guava_version"
|
||
|
}
|