This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 loc) · 1.51 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
buildscript {
ext.kotlin_version = '1.2.31'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName = 'MainKt'
jar {
baseName = 'resto'
version = '0.1.0'
}
repositories {
maven {
url = "https://dl.bintray.com/kotlin/exposed/"
}
mavenCentral()
}
dependencies {
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_version
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_version
compile group: 'org.glassfish.jersey.containers', name: 'jersey-container-jetty-http', version: '2.23.1'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.23.1'
compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.9.4.1'
compile group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
compile group: 'org.jetbrains.exposed', name: 'exposed', version: '0.10.1'
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
compile group: 'joda-time', name: 'joda-time', version: '2.3'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compile group: 'org.bitbucket.b_c', name: 'jose4j', version: '0.6.3'
compile group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '5.7'
compile group: 'commons-validator', name: 'commons-validator', version: '1.6'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}