-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (36 loc) · 1.82 KB
/
build.gradle
File metadata and controls
45 lines (36 loc) · 1.82 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.7'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.adjh'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
// [Global Level]
implementation 'org.springframework.boot:spring-boot-starter-web' // Spring Boot Web
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc' // Spring Boot JDBC + HikariCP
implementation 'org.springframework.boot:spring-boot-starter-validation' // Spring Boot validation
implementation 'org.springframework.boot:spring-boot-starter-security' // Spring Security
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2' // Spring Boot MyBatis
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' // Thymeleaf Template
// [Open Source]
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.1.0' // Thymeleaf Layout
implementation "com.googlecode.json-simple:json-simple:1.1.1" // Google Simple JSON
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2' // Jackson Databind
implementation "io.jsonwebtoken:jjwt:0.9.1" // Spring Json-Web-Token
// [Compile & runtime Level]
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'
// [Annotation Level]
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
}
tasks.named('test') {
useJUnitPlatform()
}