-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (41 loc) · 1.54 KB
/
build.gradle
File metadata and controls
54 lines (41 loc) · 1.54 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
53
54
plugins {
id 'java'
}
group = 'com.kh'
version = '1.0-SNAPSHOT'
jar {
manifest {
attributes 'Main-Class': 'com.kh.Main'
}
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'io.github.cdimascio', name: 'dotenv-java', version: '3.0.0'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.30'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.30'
implementation 'com.mysql:mysql-connector-j:8.0.33'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.4.14'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.1.0-alpha1'
compileOnly group: 'jakarta.servlet', name: 'jakarta.servlet-api', version: '6.1.0-M1'
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.18'
implementation 'org.json:json:20231013'
implementation 'org.hibernate.validator:hibernate-validator:8.0.1.Final'
implementation 'org.glassfish:jakarta.el:5.0.0-M1'
}
test {
useJUnitPlatform()
}