-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
39 lines (29 loc) · 894 Bytes
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.jetbrains.kotlin.jvm") version "1.3.10"
}
group = "com.codav"
version = "1.0-SNAPSHOT"
description = """
Proyecto para persistencia de personas
Nombre del Proyecto: ${project.name}"""
repositories {
mavenCentral()
jcenter()
}
dependencies {
// Use the Kotlin JDK 8 standard library
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.exposed:exposed:0.11.2")
implementation("mysql:mysql-connector-java:8.0.13")
// Use the Kotlin test library
//testImplementation("org.jetbrains.kotlin:kotlin-test")
// Use the Kotlin JUnit integration
//testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
tasks.withType<Wrapper> {
gradleVersion = "5.0"
}