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
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,14 @@
<artifactId>translate</artifactId>
<version>2.40.15</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/application-dockerdev-sample.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ server.tomcat.max-http-form-post-size=100MB
spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=100MB

spring.devtools.restart.exclude=db/migration/**

########## WISE Properties ##########

# This section is for portal definitions
Expand Down Expand Up @@ -97,6 +99,8 @@ spring.redis.pool.max.total=128
#spring.session.redis.flush-mode=on-save # Sessions flush mode.
#spring.session.redis.namespace=spring:session # Namespace for keys used to store sessions.

spring.flyway.baseline-on-migrate=true

######### sendmail properties ##########

# This section defines the settings that the portal will use to send mail.
Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/application_sample.properties
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ spring.redis.pool.max.total=128
#spring.session.redis.flush-mode=on-save # Sessions flush mode.
#spring.session.redis.namespace=spring:session # Namespace for keys used to store sessions.

spring.flyway.baseline-on-migrate=true

######### sendmail properties ##########

# This section defines the settings that the portal will use to send mail.
Expand Down
2 changes: 2 additions & 0 deletions src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ spring.redis.pool.max.total=128
#spring.session.redis.flush-mode=on-save # Sessions flush mode.
#spring.session.redis.namespace=spring:session # Namespace for keys used to store sessions.

spring.flyway.enabled=false

######### sendmail properties ##########

# This section defines the settings that the portal will use to send mail.
Expand Down
Loading