-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.sample.xml
More file actions
26 lines (26 loc) · 1.23 KB
/
Copy pathsettings.sample.xml
File metadata and controls
26 lines (26 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>development</id>
<properties>
<flyway.user>root</flyway.user>
<flyway.password/>
<flyway.url>jdbc:mysql://localhost:3306/development?useUnicode=true&characterEncoding=UTF-8</flyway.url>
<flyway.locations>filesystem:src/main/resources/db/migration,filesystem:src/main/resources/development/db/migration</flyway.locations>
<spring-boot.run.profiles>development,local</spring-boot.run.profiles>
</properties>
</profile>
<profile>
<id>test</id>
<properties>
<flyway.user>root</flyway.user>
<flyway.password/>
<flyway.url>jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8</flyway.url>
<flyway.locations>filesystem:src/main/resources/db/migration,filesystem:src/test/resources/db/migration</flyway.locations>
</properties>
</profile>
</profiles>
</settings>