This repository was archived by the owner on Mar 10, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (38 loc) · 1.43 KB
/
build.gradle
File metadata and controls
50 lines (38 loc) · 1.43 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
plugins {
id 'java-library'
id 'io.spring.dependency-management'
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
}
}
dependencies {
api 'org.springframework.boot:spring-boot-starter'
/* Database */
api 'org.springframework.boot:spring-boot-starter-data-jpa'
api("de.m4rc3l.nova:nova-data-jpa:${novaVersion}") { changing true }
api 'org.postgresql:postgresql'
/* Network */
api 'org.springframework.boot:spring-boot-starter-reactor-netty'
/* Json */
api 'com.google.code.gson:gson'
/* Spring Security */
api 'org.springframework.security:spring-security-core'
api 'org.bouncycastle:bcpkix-jdk15on:1.69'
/* JWT */
api 'io.jsonwebtoken:jjwt-api:0.11.2'
api 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-gson:0.11.2'
/* Annotations */
compileOnlyApi 'org.jetbrains:annotations:23.0.0'
/* Metrics */
// api('io.micrometer:micrometer-core:1.5.5')
// implementation('io.micrometer:micrometer-registry-influx:1.5.5')
/* Caching */
api 'org.springframework.boot:spring-boot-starter-data-redis'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.springframework:spring-context-indexer'
compileOnly project(':config-processor')
annotationProcessor project(':config-processor')
}