-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjooq.xml
More file actions
38 lines (34 loc) · 1.23 KB
/
Copy pathjooq.xml
File metadata and controls
38 lines (34 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
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE configuration>
<configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-3.11.0.xsd">
<!-- Configure the database connection here -->
<jdbc>
<driver>com.mysql.jdbc.Driver</driver>
<url>
<![CDATA[
jdbc:mysql://db1.cyf2ksy495ph.us-west-2.rds.amazonaws.com:3306/arjmart?useSSL=true&verifyServerCertificate=false
]]>
</url>
<user>root</user>
<password>abcdabcd</password>
</jdbc>
<generator>
<database>
<name>org.jooq.meta.mysql.MySQLDatabase</name>
<includes>.*</includes>
<excludes>NONE</excludes>
<inputSchema>arjmart</inputSchema>
</database>
<generate></generate>
<target>
<!-- The destination package of your generated classes (within the
destination directory)
jOOQ may append the schema name to this package if generating multiple schemas,
e.g. org.jooq.your.packagename.schema1
org.jooq.your.packagename.schema2 -->
<packageName>com.arjvik.arjmart.orderqueueconsumer.schema</packageName>
<!-- The destination directory of your generated classes -->
<directory>src</directory>
</target>
</generator>
</configuration>