-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (44 loc) · 1.9 KB
/
Copy pathbuild.gradle
File metadata and controls
52 lines (44 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.25'
id 'org.jetbrains.kotlin.plugin.spring' version '1.9.25'
id 'org.jetbrains.kotlin.plugin.jpa' version '1.9.25'
id 'org.springframework.boot' version '3.3.2'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'me.brightspark'
version = '0.3.0'
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
repositories {
mavenCentral()
maven {
name 'Kotlin Discord Snapshots'
url 'https://s01.oss.sonatype.org/content/repositories/snapshots'
}
maven {
name = "Sonatype Snapshots"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
// https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-jvm
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.1'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
implementation 'org.xerial:sqlite-jdbc:3.46.0.1'
// https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-community-dialects
implementation 'org.hibernate.orm:hibernate-community-dialects'
implementation 'com.kotlindiscord.kord.extensions:kord-extensions:1.5.9-SNAPSHOT'
// https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
// https://mvnrepository.com/artifact/io.github.oshai/kotlin-logging-jvm
// Removed for now, as apparently Kord includes an older version already
// implementation 'io.github.oshai:kotlin-logging-jvm:5.1.0'
}