forked from yogstation13/yogbot-kt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
76 lines (65 loc) · 2.23 KB
/
build.gradle
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-noarg:1.6.20-RC2"
}
}
plugins {
id 'org.springframework.boot' version '2.7.15'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.6.20-RC2'
id "io.gitlab.arturbosch.detekt" version "1.20.0"
}
apply plugin: "kotlin-jpa"
apply plugin: "kotlin-kapt"
group 'net.yogstation'
version '1.0-SNAPSHOT'
repositories {
maven { url 'https://repo.spring.io/milestone' }
mavenCentral()
}
jar {
manifest {
attributes 'Main-Class': 'net.yogstation.yogbot.Yogbot'
}
}
dependencyLocking {
lockAllConfigurations()
}
dependencies {
kapt 'org.hibernate:hibernate-jpamodelgen:5.6.15.Final'
kapt "org.springframework.boot:spring-boot-configuration-processor"
implementation 'org.yaml:snakeyaml:2.0'
implementation('com.fasterxml.jackson:jackson-bom:2.14.2')
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'org.thymeleaf:thymeleaf:3.1.2.RELEASE'
implementation 'org.thymeleaf:thymeleaf-spring5:3.1.2.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation 'com.discord4j:discord4j-core:3.2.3'
implementation 'mysql:mysql-connector-java:8.0.32'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.apache.commons:commons-text:1.10.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.springframework:spring-jdbc"
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.8.10'
implementation 'io.projectreactor.kotlin:reactor-kotlin-extensions:1.2.2'
implementation 'ch.qos.logback:logback-classic:1.2.13'
implementation 'ch.qos.logback:logback-core:1.2.13'
implementation 'io.netty:netty-codec-http2:4.1.100.Final'
implementation 'io.projectreactor.netty:reactor-netty-http:1.0.39'
}
compileKotlin {
kotlinOptions {
jvmTarget = "17"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "17"
}
}