-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (44 loc) · 1.6 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
id 'application'
}
group 'live.karyl'
version '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
setMainClassName('live.karyl.anifetch.AniFetchApplication')
dependencies {
//spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.springframework.boot:spring-boot-starter-data-mongodb"
implementation 'org.springframework.boot:spring-boot-starter-graphql'
implementation 'org.springframework.boot:spring-boot-starter-security'
//idk
implementation "org.bspfsystems:yamlconfiguration:1.3.0"
implementation 'org.openjdk.nashorn:nashorn-core:15.0'
//connection
implementation 'org.jsoup:jsoup:1.15.3'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.squareup.okhttp3:okhttp:4.5.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
implementation 'org.projectlombok:lombok:1.18.24'
implementation 'org.apache.commons:commons-text:1.10.0'
//database
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'redis.clients:jedis:4.3.0'
//Logging
implementation 'org.tinylog:tinylog-api:2.6.0'
implementation 'org.tinylog:tinylog-impl:2.6.0'
implementation 'io.micrometer:micrometer-registry-prometheus:1.11.2'
}
test {
useJUnitPlatform()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}