-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·53 lines (40 loc) · 1.38 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
group 'memeteam.ur'
version '0.0.0001'
buildscript {
ext.kotlin_version = '1.1.2-2'
ext.ktorVersion = "0.3.2"
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4'
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'org.junit.platform.gradle.plugin'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "https://dl.bintray.com/kotlin/exposed/"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile 'org.jetbrains.exposed:exposed:0.8' // SQL typese
compile "org.xerial:sqlite-jdbc:3.16.1" // JDBC driver for SQLite
compile "io.netty:netty-all:4.1.9.Final"
compile "com.fasterxml.jackson.core:jackson-core:2.8.0.rc1"
compile "com.fasterxml.jackson.core:jackson-databind:2.8.0.rc1"
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.slf4j:slf4j-log4j12:1.7.25'
compile 'org.apache.logging.log4j:log4j:2.8.2'
compile 'io.github.microutils:kotlin-logging:1.4.4'
testCompile "org.junit.jupiter:junit-jupiter-api:5.0.0-M4"
testRuntime "org.junit.jupiter:junit-jupiter-engine:5.0.0-M4"
}