Skip to content

Commit 339407d

Browse files
authoredJul 23, 2021
Merge pull request #355 from i-on-project/release/2021-final
fixes release version
2 parents 610b7c8 + 0d73b78 commit 339407d

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed
 

‎.docker/compose_ci.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ services:
1111
environment:
1212
- JDBC_DATABASE_URL=jdbc:postgresql://db:5432/core?user=bob&password=changeit
1313
- ION_CORE_SECRET_KEY=t8abumA3JBJrd7q0LuN3nSzKGBfslOYb
14+
- FLYWAY_LOCATIONS=classpath:migrations,classpath:test_migrations
1415
db:
1516
image: postgres:13-alpine
1617
container_name: core-db-container

‎.docker/compose_run.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ services:
1414
- JDBC_DATABASE_URL=jdbc:postgresql://db:5432/core?user=bob&password=changeit
1515
- ION_CORE_SECRET_KEY=t8abumA3JBJrd7q0LuN3nSzKGBfslOYb
1616
- ION_CORE_BASE_URL=http://localhost:10023
17+
- FLYWAY_LOCATIONS=classpath:migrations,classpath:test_migrations
1718
db:
1819
image: postgres:13-alpine
1920
container_name: core-db-container

‎jvm/src/test/resources/application.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ core.secret-key-password=changeit
66
ingestion.institution_folder=${INTEGRATION_INSTITUTION:pt.ipl.isel}
77
ingestion.repository_remote=${INTEGRATION_REPOSITORY_REMOTE:https://github.com/i-on-project/integration-data}
88
ingestion.repository_remote_branch=${INTEGRATION_REPOSITORY_REMOTE_BRANCH:master}
9-
spring.flyway.locations=${FLYWAY_LOCATIONS:classpath:migrations,classpath:test_migrations}
9+
spring.flyway.locations=${FLYWAY_TEST_LOCATIONS:classpath:migrations,classpath:test_migrations}
1010
spring.flyway.enabled=true
1111
spring.profiles.active=test

0 commit comments

Comments
 (0)
Please sign in to comment.