Skip to content

Commit

Permalink
config: jasypt 제거, 환경변수 주입 (#41)
Browse files Browse the repository at this point in the history
* config: db 접속 정보를 환경변수로 주입

* feat: jasypt 의존성 제거
  • Loading branch information
junhaesung authored Sep 30, 2023
1 parent cc8934b commit d16613b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ class NplusoneBatchApplication
fun main(args: Array<String>) {
System.setProperty("spring.config.name", "application,batch")
SpringApplication.run(NplusoneBatchApplication::class.java, *args)
}
}
3 changes: 1 addition & 2 deletions nplusone-domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-cache")
implementation("mysql:mysql-connector-java")
implementation("com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4")
implementation("com.querydsl:querydsl-jpa")
implementation("com.querydsl:querydsl-apt")
annotationProcessor("com.querydsl:querydsl-apt:${dependencyManagement.importedProperties["querydsl.version"]}:jpa")
Expand All @@ -20,4 +19,4 @@ tasks.withType<Jar> {

tasks.withType<BootJar> {
enabled = false
}
}

0 comments on commit d16613b

Please sign in to comment.