-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
42 lines (35 loc) · 1.33 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
42 lines (35 loc) · 1.33 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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin application project to get you started.
*/
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM
id("org.jetbrains.kotlin.jvm").version("1.3.10")
// Apply the application to add support for building a CLI application
application
}
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
maven (url="https://dl.bintray.com/pgutkowski/Maven")
}
dependencies {
// Use the Kotlin JDK 8 standard library
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.exposed:exposed:0.11.2")
implementation("org.http4k:http4k-core:3.102.0")
implementation("org.postgresql:postgresql:42.2.2")
implementation("com.github.pgutkowski:kgraphql:0.3.0")
implementation("org.http4k:http4k-server-jetty:3.102.0")
// Use the Kotlin test library
testImplementation("org.jetbrains.kotlin:kotlin-test")
// Use the Kotlin JUnit integration
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
implementation("com.beust:klaxon:3.0.1")
}
application {
// Define the main class for the application
mainClassName = "com.github.jmlb23.movielense.MainKt"
}