forked from irods-contrib/metalnx-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.xml
30 lines (22 loc) · 974 Bytes
/
settings.xml
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
27
28
29
30
<?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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- what follows is an example maven settings.xml profile for jargon testing.
This is picked up by the jargon pom file and used to generate a testing.properties
file in the java test resources directory -->
<profiles>
<profile>
<id>flyway-local</id>
<properties>
<flyway.jdbc.url>jdbc:postgresql://server1.local:5432/IRODS-EXT</flyway.jdbc.url>
<flyway.db.user>irodsext</flyway.db.user>
<flyway.db.password>password</flyway.db.password>
<flyway.db.schema>public</flyway.db.schema>
</properties>
</profile>
</profile>
<activeProfiles>
<activeProfile>flyway-loxal</activeProfile>
</activeProfiles>
</settings>