blob: 35ab5aa9aa6085df8631bf6b2b7be7f5a739fbe4 [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 {
// ext.kotlin_version = '1.2.60'
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 '1.2.4'
id 'com.github.maiflai.scalatest' version '0.22'
id 'scala'
}
apply plugin: 'kotlin'
apply plugin: 'org.junit.platform.gradle.plugin'
junitPlatform {
filters {
engines {
include 'spek'
}
}
}
shadowJar {
zip64 true
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
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(':common')
compile project(':amaterasu-sdk')
compile project(':leader-common')
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect"
compile 'com.uchuhimo:konf:0.11'
testCompile 'org.jetbrains.spek:spek-api:1.1.5'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testRuntime 'org.jetbrains.spek:spek-junit-platform-engine:1.1.5'
testCompile 'org.junit.platform:junit-platform-runner:1.0.0'
testCompile "com.nhaarman:mockito-kotlin:1.6.0"
// spek requires kotlin-reflect, can be omitted if already in the classpath
testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-script-runtime:$kotlin_version"
}
sourceSets {
test {
resources.srcDirs += [file('src/test/resources')]
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
task copyToHomeBin(type: Copy) {
dependsOn shadowJar
from 'build/libs'
into '../../../build/amaterasu/bin'
}
task copyToHome() {
dependsOn copyToHomeBin
}