-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
119 lines (100 loc) · 3.53 KB
/
build.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
plugins {
id 'org.springframework.boot' version '2.5.0'
id 'java'
id 'nu.studer.jooq' version '5.2.1'
id "org.flywaydb.flyway" version '7.9.1'
}
apply plugin: 'io.spring.dependency-management'
group = 'be.lghs'
version = '0.0.1'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
configurations {
flywayRuntime
}
repositories {
mavenLocal()
mavenCentral()
}
springBoot {
buildInfo()
}
jooq {
configurations {
main {
generationTool {
jdbc {
driver = "${database_driver}"
url = "${database_url}"
user = "${database_user}"
password = "${database_password}"
schema = "${database_schema}"
}
generator {
database {
name = 'org.jooq.meta.postgres.PostgresDatabase'
includes = '.*'
inputSchema = 'accounting'
// outputSchemaToDefault = true
schemaVersionProvider = 'SELECT \'accounting_\' || MAX(version) FROM accounting.flyway_schema_history'
}
generate {
deprecated = false
// relations = true
// records = true
// immutablePojos = true
// fluentSetters = true
javaTimeTypes = true
}
target {
packageName = 'be.lghs.accounting.model'
// should those be committed as sources?
directory = "${buildDir}/generated/sources/jooq/java"
}
}
}
}
}
}
flyway {
// driver = "${database_driver}"
url = "${database_url}"
user = "${database_user}"
password = "${database_password}"
schemas = [ "${database_schema}" ]
configurations = [ 'flywayRuntime' ]
}
task jooq(type: GradleBuild) {
tasks = ['flywayMigrate', 'generateJooq']
}
task ghActionVersion {
doLast {
println "::set-output name=accounting_version::$version"
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-jooq'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.security:spring-security-oauth2-client'
// handlerbars sucks, I'd love rocker back... If only there was an IntelliJ plugin :(
implementation 'io.pebbletemplates:pebble:3.1.5'
implementation 'io.pebbletemplates:pebble-spring-boot-starter:3.1.5'
//implementation 'org.apache.commons:commons-lang3:3.10' // missing transitive dependency
implementation 'org.flywaydb:flyway-core'
implementation 'org.jfree:jfreechart:1.5.3'
implementation 'org.jfree:jfreesvg:3.4'
implementation 'nl.garvelink.oss:iban:1.9.0'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'
jooqGenerator 'org.postgresql:postgresql'
flywayRuntime 'org.postgresql:postgresql'
}