This repository has been archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
110 lines (96 loc) · 3.02 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* Komunumo – Open Source Community Manager
* Copyright (C) 2017 Java User Group Switzerland
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
group 'org.komunumo.'
version "$komunumoVersion"
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.github.jengelman.gradle.plugins:shadow:$shadowVersion"
classpath "org.junit.platform:junit-platform-gradle-plugin:$junitGradlePlugin"
classpath "com.github.ben-manes:gradle-versions-plugin:$gradleVersionsversion"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'com.github.ben-manes.versions'
mainClassName = 'ch.komunumo.server.MainKt'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin/'
test.java.srcDirs += 'src/test/kotlin/'
}
kotlin {
experimental {
coroutines 'enable'
}
}
shadowJar {
baseName = 'komunumo-backend'
classifier = null
version = null
}
junitPlatform {
filters {
engines {
include 'spek'
}
}
}
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
maven { url "https://dl.bintray.com/kotlin/ktor" }
maven { url "https://dl.bintray.com/jetbrains/spek" }
}
dependencies {
compile (
"io.github.microutils:kotlin-logging:$kotlinLoggingVersion",
"io.jsonwebtoken:jjwt:$jjwtVersion",
"org.apache.commons:commons-email:$apacheCommonsEmailVersion",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion",
"org.jetbrains.ktor:ktor-gson:$ktorVersion",
"org.jetbrains.ktor:ktor-netty:$ktorVersion",
"org.mapdb:mapdb:$mapdbVersion",
"org.slf4j:slf4j-simple:$slf4jVersion"
)
testCompile (
"org.jetbrains.spek:spek-api:$spekVersion"
) {
exclude group: 'org.jetbrains.kotlin'
}
testRuntime (
"org.jetbrains.spek:spek-junit-platform-engine:$spekVersion"
) {
exclude group: 'org.junit.platform'
exclude group: 'org.jetbrains.kotlin'
}
}