2018-03-06 17:29:21 +00:00
|
|
|
/*
|
|
|
|
* R3 Proprietary and Confidential
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 R3 Limited. All rights reserved.
|
|
|
|
*
|
|
|
|
* The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law.
|
|
|
|
*
|
|
|
|
* Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
|
|
|
|
*/
|
|
|
|
|
2017-06-19 15:41:28 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.intellij" version "0.2.11"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
intellij {
|
2017-06-19 16:53:53 +00:00
|
|
|
version 'IC-2017.1'
|
2017-06-19 15:41:28 +00:00
|
|
|
//IntelliJ IDEA 2016.3 dependency; for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
|
|
|
|
plugins = ['Kotlin', 'devkit', 'gradle'] //Bundled plugin dependencies
|
|
|
|
pluginName "$project.name"
|
|
|
|
|
|
|
|
updateSinceUntilBuild = false
|
|
|
|
sameSinceUntilBuild = false
|
|
|
|
|
|
|
|
buildDir = "$projectDir/build"
|
|
|
|
}
|
|
|
|
|
2017-08-14 13:00:55 +00:00
|
|
|
dependencies {
|
2017-08-17 11:16:10 +00:00
|
|
|
compile project(':core')
|
2017-08-14 13:00:55 +00:00
|
|
|
// For JSON
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind:2.8.5"
|
|
|
|
}
|
|
|
|
|
2017-06-19 15:41:28 +00:00
|
|
|
group 'net.corda'
|
|
|
|
version '0.1.0' // Plugin version
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main{
|
|
|
|
java.srcDirs += 'src/main/kotlin'
|
|
|
|
resources.srcDirs += 'src/main/resources'
|
|
|
|
}
|
|
|
|
}
|