-
Notifications
You must be signed in to change notification settings - Fork 2
/
jooq.gradle
34 lines (34 loc) · 1.01 KB
/
jooq.gradle
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
jooq {
configuration {
jdbc {
driver = 'org.postgresql.Driver'
url = 'jdbc:postgresql://localhost:5432/reportportal'
user = 'rpuser'
password = 'rppass'
}
generator {
strategy {
name = 'org.jooq.codegen.example.JPrefixGeneratorStrategy'
// ...
}
database {
name = 'org.jooq.meta.postgres.PostgresDatabase'
inputSchema = 'example'
// ...
excludes = 'batch_.*|schema_migrations'
}
generate {
pojosEqualsAndHashCode = true
pojos = true
jpaAnnotations = false
routines = false
deprecationOnUnknownTypes = false
records = false
}
target {
packageName = 'com.epam.reportportal.extension.jira.jooq'
directory = 'src/main/java/'
}
}
}
}