-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjooq-config.xml
More file actions
26 lines (22 loc) · 907 Bytes
/
jooq-config.xml
File metadata and controls
26 lines (22 loc) · 907 Bytes
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" standalone="yes"?>
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.19.0.xsd">
<jdbc>
<driver>org.postgresql.Driver</driver>
<url>jdbc:postgresql://localhost:5432/SimulatorBridger-VehicleData</url>
<user>postgres</user>
<password>gnomes</password>
</jdbc>
<generator>
<name>org.jooq.codegen.JavaGenerator</name>
<database>
<name>org.jooq.meta.postgres.PostgresDatabase</name>
<inputSchema>public</inputSchema>
<includes>.*</includes>
<excludes></excludes>
</database>
<target>
<packageName>uk.ncl.giacomobergami.utils.database.jooq</packageName>
<directory>C:\Users\rohin\SimulatorBridger\SimulatorBridger\SimulatorBridger-core\src\main\java\</directory>
</target>
</generator>
</configuration>