-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
260 lines (252 loc) · 9.28 KB
/
pom.xml
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>github.benslabbert</groupId>
<artifactId>vertx-dagger-bom</artifactId>
<version>1.66.0</version>
</parent>
<groupId>com.example.parent</groupId>
<artifactId>parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<modules>
<module>catalog-parent</module>
<module>reactive-test-parent</module>
<module>payment-parent</module>
<module>client-parent</module>
<module>warehouse-parent</module>
<module>jte-htmx-parent</module>
<module>virtual-parent</module>
<module>jdbc-parent</module>
</modules>
<properties>
<!--config-->
<quickBuild>false</quickBuild>
<docker.skip>${quickBuild}</docker.skip>
<shade.skip>${quickBuild}</shade.skip>
<copyJarDeps.skip>${quickBuild}</copyJarDeps.skip>
<skipJooqGeneration>false</skipJooqGeneration>
<dockerImageNameBase>ghcr.io/benslabbert/vertx-dagger-app</dockerImageNameBase>
<!--deps-->
<jsonwriter.version>1.40.0</jsonwriter.version>
<vertx-dagger-commons.version>1.57.0</vertx-dagger-commons.version>
<vertx-dagger-codegen.version>1.52.0</vertx-dagger-codegen.version>
<vertx-dagger-starter.version>1.45.0</vertx-dagger-starter.version>
<vertx-dagger-app-api.version>1.57.0</vertx-dagger-app-api.version>
<tx-manager.version>1.34.0</tx-manager.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>github.benslabbert.txmanager</groupId>
<artifactId>annotation</artifactId>
<version>${tx-manager.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-codegen</groupId>
<artifactId>annotation</artifactId>
<version>${vertx-dagger-codegen.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.jsonwriter</groupId>
<artifactId>annotation</artifactId>
<version>${jsonwriter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-app-api</groupId>
<artifactId>catalog-saga-api</artifactId>
<version>${vertx-dagger-app-api.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-commons</groupId>
<artifactId>commons</artifactId>
<version>${vertx-dagger-commons.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-codegen</groupId>
<artifactId>commons</artifactId>
<version>${vertx-dagger-codegen.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-commons</groupId>
<artifactId>db-migration</artifactId>
<version>${vertx-dagger-commons.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-commons</groupId>
<artifactId>entity-generator</artifactId>
<version>${vertx-dagger-commons.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-app-api</groupId>
<artifactId>iam-auth-api</artifactId>
<version>${vertx-dagger-app-api.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-starter</groupId>
<artifactId>iam-auth-client-starter</artifactId>
<version>${vertx-dagger-starter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-app-api</groupId>
<artifactId>iam-rpc-api</artifactId>
<version>${vertx-dagger-app-api.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-starter</groupId>
<artifactId>jdbc-pool-starter</artifactId>
<version>${vertx-dagger-starter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.jsonwriter</groupId>
<artifactId>processor</artifactId>
<version>${jsonwriter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-codegen</groupId>
<artifactId>processor</artifactId>
<version>${vertx-dagger-codegen.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-starter</groupId>
<artifactId>reactive-db-pool-starter</artifactId>
<version>${vertx-dagger-starter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-starter</groupId>
<artifactId>redis-starter</artifactId>
<version>${vertx-dagger-starter.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.txmanager</groupId>
<artifactId>txmanager</artifactId>
<version>${tx-manager.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-app-api</groupId>
<artifactId>warehouse-rpc-api</artifactId>
<version>${vertx-dagger-app-api.version}</version>
</dependency>
<dependency>
<groupId>github.benslabbert.txmanager</groupId>
<artifactId>plugin</artifactId>
<version>${tx-manager.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>github.benslabbert.vertx-dagger-commons</groupId>
<artifactId>commons</artifactId>
<version>${vertx-dagger-commons.version}</version>
<classifier>tests</classifier>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>github.benslabbert.txmanager</groupId>
<artifactId>plugin</artifactId>
<version>${tx-manager.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<configuration>
<skip>${quickBuild}</skip>
<yaml>
<includes>
<include>**/*.yaml</include>
<include>**/*.yml</include>
</includes>
<excludes>
<exclude>**/helm/**</exclude>
<exclude>**/node_modules/**</exclude>
</excludes>
<jackson />
</yaml>
<sql>
<dbeaver>
<configFile>dbeaver.properties</configFile>
</dbeaver>
<includes>
<include>**/*.sql</include>
</includes>
</sql>
<pom>
<includes>
<include>pom.xml</include>
</includes>
<sortPom>
<encoding>UTF-8</encoding>
<lineSeparator>${line.separator}</lineSeparator>
<expandEmptyElements>false</expandEmptyElements>
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
<keepBlankLines>true</keepBlankLines>
<nrOfIndentSpace>2</nrOfIndentSpace>
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder>
<sortDependencies>scope,group,artifactId</sortDependencies>
<sortPlugins>groupId,artifactId</sortPlugins>
</sortPom>
</pom>
<markdown>
<includes>
<include>**/*.md</include>
</includes>
<excludes>
<exclude>**/node_modules/**</exclude>
</excludes>
<flexmark />
</markdown>
<java>
<includes>
<include>src/main/**/*.java</include>
<include>src/test/**/*.java</include>
<include>target/generated-sources/**/com/example/**/*.java</include>
</includes>
<googleJavaFormat>
<style>GOOGLE</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<formatAnnotations />
<licenseHeader>
<content>/* Licensed under Apache-2.0 $YEAR. */</content>
<delimiter>package</delimiter>
</licenseHeader>
</java>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
<executions>
<execution>
<id>flatten</id>
<goals>
<goal>flatten</goal>
</goals>
<phase>process-resources</phase>
</execution>
<execution>
<id>flatten.clean</id>
<goals>
<goal>clean</goal>
</goals>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>