Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
api.version=1.44
1 change: 1 addition & 0 deletions bottlenote-batch/src/test/resources/docker-java.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
api.version=1.44
1 change: 1 addition & 0 deletions bottlenote-mono/src/test/resources/docker-java.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
api.version=1.44
2 changes: 1 addition & 1 deletion bottlenote-product-api/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.7-3
1.0.8
20 changes: 20 additions & 0 deletions bottlenote-product-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,26 @@ spring:
jackson:
time-zone: Asia/Seoul

# Quartz 설정 (ViewHistorySyncJob 클러스터링)
quartz:
overwrite-existing-jobs: true
job-store-type: jdbc
jdbc:
initialize-schema: never
properties:
org:
quartz:
scheduler:
instanceName: bottle_note_product_quartz_scheduler
instanceId: AUTO
threadPool:
threadCount: 5
threadPriority: 5
jobStore:
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
isClustered: true
clusterCheckinInterval: 20000

# Spring Security
security:
jwt:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ spring:
allow-bean-definition-overriding: true
application:
name: bottle-note-test

# Quartz 비활성화 (테스트 환경)
quartz:
auto-startup: false
job-store-type: memory
test:
database:
replace: none
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
api.version=1.44
2 changes: 1 addition & 1 deletion git.environment-variables
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ firebase-admin = "9.4.3"

# Testing
testng = "7.7.0"
testcontainers = "1.19.8"
testcontainers-junit = "1.19.8"
testcontainers-mysql = "1.19.8"
testcontainers-minio = "1.19.8"
testcontainers = "1.21.4"
testcontainers-junit = "1.21.4"
testcontainers-mysql = "1.21.4"
testcontainers-minio = "1.21.4"
testcontainers-redis = "2.2.4"
mockito-inline = "5.2.0"
archunit = "1.4.0"
Expand Down
Loading