-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
92 lines (75 loc) · 2.06 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
buildscript {
ext {
kotlinVersion = "1.2.60"
junitPlatformVersion = "1.0.0-M4"
spekVersion = "1.1.2"
}
repositories {
jcenter()
maven { url "http://dl.bintray.com/jetbrains/spek" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.junit.platform:junit-platform-gradle-plugin:$junitPlatformVersion"
}
}
repositories {
jcenter()
maven { url "http://dl.bintray.com/jetbrains/spek" }
}
subprojects {
group "io.github.vjames19"
version "0.1.0"
apply plugin: "kotlin"
apply plugin: "org.junit.platform.gradle.plugin"
apply plugin: "maven-publish"
sourceCompatibility = 1.8
repositories {
jcenter()
maven { url "http://dl.bintray.com/jetbrains/spek" }
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourceJar {
classifier "sources"
}
}
}
}
junitPlatform {
filters {
engines {
include "spek"
}
}
platformVersion junitPlatformVersion
}
compileKotlin {
kotlinOptions {
apiVersion = "1.2"
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
apiVersion = "1.2"
jvmTarget = "1.8"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
testCompile "org.jetbrains.spek:spek-api:$spekVersion"
testRuntime "org.jetbrains.spek:spek-junit-platform-engine:$spekVersion"
testCompile "org.junit.platform:junit-platform-launcher:$junitPlatformVersion"
testCompile "org.amshove.kluent:kluent:1.23"
}
}
task wrapper(type: Wrapper) {
gradleVersion = "3.5"
distributionType = org.gradle.api.tasks.wrapper.Wrapper.DistributionType.ALL
}