Skip to content

Commit

Permalink
Feat: auth module
Browse files Browse the repository at this point in the history
  • Loading branch information
versatile0010 committed Jan 9, 2024
1 parent cab6774 commit befe8cd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions daepiro-auth/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
dependencies {
implementation project(':daepiro-core')
implementation project(':daepiro-redis')
implementation project(':daepiro-common')

implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.10.0'
implementation 'com.googlecode.json-simple:json-simple:1.1'

implementation 'org.springframework.boot:spring-boot-starter-validation'

implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'

implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: '2.7.3'
implementation 'org.springframework.boot:spring-boot-starter-security'

implementation 'joda-time:joda-time:2.10.10'
}

tasks.bootJar {
enabled = false
}

0 comments on commit befe8cd

Please sign in to comment.