-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (37 loc) · 1.12 KB
/
Copy pathbuild.gradle
File metadata and controls
43 lines (37 loc) · 1.12 KB
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id("application")
id 'java'
id 'war'
id "com.expediagroup.graphql" version "3.4.1"
}
group 'io.leege'
version '1.0-SNAPSHOT'
application {
applicationName = "FCFinderV2"
mainClassName = "io.leege.fcfinderv2.Application"
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.exposed:exposed-core:0.23.1"
implementation "org.jetbrains.exposed:exposed-dao:0.23.1"
implementation "org.jetbrains.exposed:exposed-jdbc:0.23.1"
implementation "com.expediagroup:graphql-kotlin-schema-generator:2.1.1"
implementation "com.sparkjava:spark-core:2.9.1"
implementation "org.postgresql:postgresql:42.2.2"
implementation "org.slf4j:slf4j-log4j12:1.7.30"
implementation "log4j:log4j:1.2.17"
testImplementation "junit:junit:4.13"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
// Used by Heroku To Install and Run App
task stage(dependsOn: ['clean', 'installDist'])