-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
37 lines (33 loc) · 1.03 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
37 lines (33 loc) · 1.03 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
plugins {
application
kotlin("jvm") version "2.1.20"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
application {
mainClass.set("com.lbty.MainKt")
}
group = "com.lbty"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc
runtimeOnly("com.microsoft.sqlserver:mssql-jdbc:12.10.0.jre8")
runtimeOnly("com.mysql:mysql-connector-j:9.3.0")
// https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8
runtimeOnly("com.oracle.database.jdbc:ojdbc8:23.8.0.25.04")
// https://mvnrepository.com/artifact/org.postgresql/postgresql
runtimeOnly("org.postgresql:postgresql:42.7.7")
// https://mvnrepository.com/artifact/com.ibm.db2/jcc
runtimeOnly("com.ibm.db2:jcc:12.1.2.0")
// https://mvnrepository.com/artifact/org.apache.hive/hive-jdbc
runtimeOnly("org.apache.hive:hive-jdbc:4.0.1")
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}