File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,34 @@ repositories {
2121}
2222
2323dependencies {
24+
25+ // Spring basic
2426implementation ' org.springframework.boot:spring-boot-starter-actuator'
25- implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
26- implementation ' org.springframework.boot:spring-boot-starter-security'
2727implementation ' org.springframework.boot:spring-boot-starter-web'
28- compileOnly ' org.projectlombok:lombok'
28+
29+ // Database
30+ implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
2931runtimeOnly ' org.postgresql:postgresql'
3032runtimeOnly ' com.h2database:h2'
33+
34+ // Security
35+ implementation ' org.springframework.boot:spring-boot-starter-security'
36+ implementation ' io.jsonwebtoken:jjwt:0.9.1'
37+
38+ // Lombok
39+ compileOnly ' org.projectlombok:lombok'
3140annotationProcessor ' org.projectlombok:lombok'
41+
42+ // swagger3
43+ compile " io.springfox:springfox-swagger2:3.0.0-SNAPSHOT"
44+ compile " io.springfox:springfox-swagger-ui:3.0.0-SNAPSHOT"
45+
46+ // Mapstruct
47+ implementation " org.mapstruct:mapstruct:1.3.0.Final"
48+ compileOnly ' org.mapstruct:mapstruct-jdk8:1.3.0.Final'
49+ annotationProcessor ' org.mapstruct:mapstruct-processor:1.3.0.Final'
50+
51+ // Test
3252testImplementation(' org.springframework.boot:spring-boot-starter-test' ) {
3353exclude group : ' org.junit.vintage' , module : ' junit-vintage-engine'
3454}
You can’t perform that action at this time.
0 commit comments