-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (51 loc) · 2.8 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
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.projectlombok/lombok
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
// https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-core
// comes with spring data-jpa dep
// implementation 'org.hibernate.orm:hibernate-core:6.4.4.Final'
// https://mvnrepository.com/artifact/org.hibernate/hibernate-validator
implementation 'org.hibernate:hibernate-validator:8.0.1.Final'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
implementation 'org.springframework.boot:spring-boot:3.2.4'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure
implementation 'org.springframework.boot:spring-boot-autoconfigure:3.2.4'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.2.4'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web
implementation 'org.springframework.boot:spring-boot-starter-web:3.2.4'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
implementation 'org.springframework.boot:spring-boot-starter-security:3.3.0'
// https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
// https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl
implementation 'io.jsonwebtoken:jjwt-impl:0.12.5'
// https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.5'
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation 'org.postgresql:postgresql:42.7.3'
// https://mvnrepository.com/artifact/jakarta.persistence/jakarta.persistence-api
implementation 'jakarta.persistence:jakarta.persistence-api:3.1.0'
// https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
implementation 'org.springframework.data:spring-data-jpa:3.2.4'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
implementation 'org.apache.logging.log4j:log4j-core:2.23.1'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api
implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl
testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}