Skip to content

Commit d6cf3af

Browse files
committed
Added gradle dependency to code
1 parent 82036c6 commit d6cf3af

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

build.gradle

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,34 @@ repositories {
2121
}
2222

2323
dependencies {
24+
25+
// Spring basic
2426
implementation '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'
2727
implementation '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'
2931
runtimeOnly 'org.postgresql:postgresql'
3032
runtimeOnly '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'
3140
annotationProcessor '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
3252
testImplementation('org.springframework.boot:spring-boot-starter-test') {
3353
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
3454
}

0 commit comments

Comments
 (0)