-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.xml.sample
47 lines (44 loc) · 2.16 KB
/
settings.xml.sample
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<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>
<!--
these profile are used to provide db connection details
so that the jOOQ code generator can run.
-->
<profile>
<id>local-postgres</id>
<properties>
<database.url>jdbc:postgresql://localhost:5432/waltz</database.url>
<database.user>waltz</database.user>
<database.password>waltz</database.password>
<database.schema>public</database.schema>
</properties>
</profile>
<profile>
<id>local-mariadb</id>
<properties>
<database.url>jdbc:mysql://localhost:3306/waltz</database.url>
<database.user>waltz</database.user>
<database.password>waltz</database.password>
<database.schema>waltz</database.schema>
</properties>
</profile>
<profile>
<id>local-mssql</id>
<properties>
<database.url>jdbc:sqlserver://localhost:1433;databaseName=waltz</database.url>
<database.user>waltz</database.user>
<database.password>waltz</database.password>
<database.schema>dbo</database.schema>
<database.catalog>waltz</database.catalog> <!-- only req'd for code gen w/ mssql -->
<!-- this should match your MSSQL version -->
<jooq.dialect>SQLSERVER2017</jooq.dialect>
<!-- uncomment and use this if using jOOQ trial -->
<!--<jooq.group>org.jooq.trial-java-8</jooq.group> -->
<!-- uncomment and use this if your jOOQ version if different from the one in Waltz source code -->
<!-- this should match the version in your downloaded jOOQ Pro/Trial zip file (jOOQ-<version>.zip) -->
<!-- <jooq.version></jooq.version> -->
</properties>
</profile>
</profiles>
</settings>