mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
46 lines
1.1 KiB
Groovy
46 lines
1.1 KiB
Groovy
group 'com.r3cev.prototyping'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'org.jetbrains.dokka'
|
|
|
|
allprojects {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.0.0-beta-3594'
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.3"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.11'
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
compile "com.google.guava:guava:18.0"
|
|
compile "com.esotericsoftware:kryo:3.0.3"
|
|
compile "com.google.code.findbugs:jsr305:3.0.1"
|
|
|
|
// Logging
|
|
compile "org.slf4j:slf4j-jdk14:1.7.13"
|
|
|
|
// For visualisation
|
|
compile "org.graphstream:gs-core:1.3"
|
|
compile "org.graphstream:gs-ui:1.3"
|
|
compile "com.intellij:forms_rt:7.0.3"
|
|
}
|