blob: 65c33dc3cd4559cb97cf5b96096e9bcaa81efbe6 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript {
repositories {
mavenCentral()
maven {
url 'http://repository.jetbrains.com/all'
}
maven {
url "https://jetbrains.jfrog.io/jetbrains/spek-snapshots"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0'
}
}
plugins {
id "com.github.johnrengelman.shadow" version "2.0.4"
}
apply plugin: 'kotlin'
apply plugin: 'org.junit.platform.gradle.plugin'
junitPlatform {
filters {
engines {
include 'spek'
}
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
shadowJar {
zip64 true
}
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'http://repository.jetbrains.com/all' }
maven { url "https://jetbrains.jfrog.io/jetbrains/spek-snapshots" }
maven { url "http://dl.bintray.com/jetbrains/spek" }
maven { url "http://oss.jfrog.org/artifactory/oss-snapshot-local" }
mavenCentral()
jcenter()
}
dependencies {
compile project(':leader-common')
compile project(':amaterasu-sdk')
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect"
compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.1.1'
testCompile 'org.jetbrains.spek:spek-api:1.1.5'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testCompile 'org.apache.curator:curator-test:2.13.0'
testRuntime 'org.jetbrains.spek:spek-junit-platform-engine:1.1.5'
// Spek requires kotlin-reflect, can be omitted if already in the classpath
testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}
task copyToHomeRoot(type: Copy) {
from 'src/main/scripts'
into '../build/amaterasu/'
}
task copyToHomeBin(type: Copy) {
dependsOn shadowJar
from 'build/libs'
into '../build/amaterasu/bin'
}
task copyToHome() {
dependsOn copyToHomeRoot
dependsOn copyToHomeBin
}
compileKotlin{
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}