Skip to content

Commit

Permalink
chore: 태스트 환경 빌드 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
shindong96 committed Apr 2, 2024
1 parent c05bc72 commit 558440b
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 21 deletions.
1 change: 0 additions & 1 deletion bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ dependencies {

test {
useJUnitPlatform()
systemProperty "encryption-key", project.getProperties().get("encryption-key")
}
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ subprojects {

tasks.named('test') {
useJUnitPlatform()
jvmArgs '-Xshare:off'
systemProperty "encryption-key", project.getProperties().get("encryption-key")
}
}

Expand Down
4 changes: 0 additions & 4 deletions core-application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ dependencies {
testImplementation(testFixtures(project(":core-domain")))
}

test {
useJUnitPlatform()
}

bootJar {
enabled = false
}
4 changes: 0 additions & 4 deletions core-domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ dependencies {
testFixturesAnnotationProcessor 'org.projectlombok:lombok'
}

test {
useJUnitPlatform()
}

bootJar {
enabled = false
}
4 changes: 0 additions & 4 deletions in-adapter-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

test {
useJUnitPlatform()
}

bootJar {
enabled = false
}
4 changes: 0 additions & 4 deletions out-adapter-persistence-jpa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

test {
useJUnitPlatform()
}

bootJar {
enabled = false
}
4 changes: 0 additions & 4 deletions security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

test {
useJUnitPlatform()
}

bootJar {
enabled = false
}

0 comments on commit 558440b

Please sign in to comment.