FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
storm-framework/pom.xml at main · storm-orm/storm-framework · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
storm-orm
/
storm-framework
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
9
Code
Issues
13
Pull requests
1
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
storm-framework
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
378 lines (377 loc) · 18.3 KB
Breadcrumbs
storm-framework
/
pom.xml
Copy path
File metadata and controls
378 lines (377 loc) · 18.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<
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
>
<
properties
>
<!--
Dev default for local/CI builds. Releases override this via -Drevision=<tag> (see .github/workflows/release.yml).
-->
<
revision
>0.0.0-SNAPSHOT</
revision
>
<
java
.version>21</
java
.version>
<
maven
.compiler.source>
${java.version}
</
maven
.compiler.source>
<
maven
.compiler.target>
${java.version}
</
maven
.compiler.target>
<
kotlin
.version>2.0.21</
kotlin
.version>
<
kotlin
.major.minor>2.0</
kotlin
.major.minor>
<
kotlin
.ksp.version>2.0.21-1.0.25</
kotlin
.ksp.version>
<
kotlin
.coroutines.version>1.9.0</
kotlin
.coroutines.version>
<
kotlinx
.serialization.version>1.7.3</
kotlinx
.serialization.version>
<!--
storm-ktor and storm-ktor-test track the Ktor ecosystem's toolchain independently of the core
framework: Ktor 3.4 requires Kotlin 2.3, which those two leaf modules override locally (see their
poms). The rest of the framework stays on Kotlin 2.0.
-->
<
ktor
.version>3.4.3</
ktor
.version>
<
graalvm
.version>24.2.2</
graalvm
.version>
<
micrometer
.version>1.15.4</
micrometer
.version>
<
micrometer-tracing
.version>1.5.4</
micrometer-tracing
.version>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
spring-boot
.version>3.5.6</
spring-boot
.version>
<
jacoco
.version>0.8.12</
jacoco
.version>
<
jspecify
.version>1.0.1</
jspecify
.version>
<
spotless
.version>2.43.0</
spotless
.version>
<!--
Dokka is this project's javadoc, so the standard switch skips it too: a build that asked for
no documentation should not load a documentation engine, let alone a second Kotlin generation
into the same JVM as the compiler.
-->
<
maven
.javadoc.skip>false</
maven
.javadoc.skip>
</
properties
>
<
groupId
>st.orm</
groupId
>
<
artifactId
>storm-framework</
artifactId
>
<
version
>
${revision}
</
version
>
<
packaging
>pom</
packaging
>
<
name
>Storm Framework</
name
>
<
description
>A SQL Template and ORM framework, focusing on modernizing and simplifying database programming.</
description
>
<
url
>https://github.com/storm-orm/storm-framework</
url
>
<
licenses
>
<
license
>
<
name
>The Apache License, Version 2.0</
name
>
<
url
>http://www.apache.org/licenses/LICENSE-2.0.txt</
url
>
</
license
>
</
licenses
>
<
developers
>
<
developer
>
<
name
>Leon van Zantvoort</
name
>
<
email
>dev@orm.st</
email
>
</
developer
>
</
developers
>
<
scm
>
<
connection
>scm:git:git://github.com/storm-orm/storm-framework.git</
connection
>
<
developerConnection
>scm:git:ssh://github.com/storm-orm/storm-framework.git</
developerConnection
>
<
url
>https://github.com/storm-orm/storm-framework/</
url
>
</
scm
>
<
modules
>
<
module
>storm-bom</
module
>
<
module
>storm-metamodel-processor</
module
>
<
module
>storm-metamodel-ksp</
module
>
<
module
>storm-compiler-plugin</
module
>
<
module
>storm-foundation</
module
>
<
module
>storm-core</
module
>
<
module
>storm-test</
module
>
<
module
>storm-jackson2</
module
>
<
module
>storm-jackson3</
module
>
<
module
>storm-kotlinx-serialization</
module
>
<
module
>storm-micrometer</
module
>
<
module
>storm-oracle</
module
>
<
module
>storm-mssqlserver</
module
>
<
module
>storm-postgresql</
module
>
<
module
>storm-mysql</
module
>
<
module
>storm-mariadb</
module
>
<
module
>storm-sqlite</
module
>
<
module
>storm-h2</
module
>
<
module
>storm-spring</
module
>
<
module
>storm-java21</
module
>
<
module
>storm-kotlin</
module
>
<
module
>storm-kotlin-spring</
module
>
<
module
>storm-spring-boot-starter</
module
>
<
module
>storm-kotlin-spring-boot-starter</
module
>
<
module
>storm-spring-boot-test-autoconfigure</
module
>
<
module
>storm-ktor</
module
>
<
module
>storm-ktor-test</
module
>
<
module
>storm-kotlin-test</
module
>
<!--
Last: aggregates the coverage of everything above.
-->
<
module
>storm-coverage</
module
>
</
modules
>
<
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>org.jetbrains</
groupId
>
<
artifactId
>annotations</
artifactId
>
<
version
>24.0.1</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<!--
Build-time API for GraalVM native-image features; never loaded at runtime.
-->
<
groupId
>org.graalvm.sdk</
groupId
>
<
artifactId
>nativeimage</
artifactId
>
<
version
>
${graalvm.version}
</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<!--
Nullness annotations on the API surface; optional, tools read them from bytecode.
-->
<
groupId
>org.jspecify</
groupId
>
<
artifactId
>jspecify</
artifactId
>
<
version
>
${jspecify.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-dependencies</
artifactId
>
<
version
>
${spring-boot.version}
</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
</
dependencies
>
</
dependencyManagement
>
<
build
>
<
pluginManagement
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.14.0</
version
>
<
configuration
>
<
source
>
${java.version}
</
source
>
<
target
>
${java.version}
</
target
>
<
release
>
${java.version}
</
release
>
<!--
Emits MethodParameters, which Spring's ParameterNameDiscoverer is the only
remaining source for. The Spring Boot Actuator endpoint needs it to bind the
arguments of its write operation.
-->
<
parameters
>true</
parameters
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-javadoc-plugin</
artifactId
>
<
version
>3.12.0</
version
>
<
executions
>
<
execution
>
<
id
>attach-javadocs</
id
>
<
goals
>
<
goal
>jar</
goal
>
</
goals
>
<
phase
>package</
phase
>
<
configuration
>
<
classifier
>javadoc</
classifier
>
<
failOnError
>true</
failOnError
>
<
doclint
>none</
doclint
>
<
source
>
${java.version}
</
source
>
<
additionalJOption
>--enable-preview</
additionalJOption
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-source-plugin</
artifactId
>
<
version
>3.3.1</
version
>
<
executions
>
<
execution
>
<
id
>attach-sources</
id
>
<
goals
>
<
goal
>jar</
goal
>
</
goals
>
<
phase
>package</
phase
>
</
execution
>
</
executions
>
<
configuration
>
<
classifier
>sources</
classifier
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
version
>3.5.2</
version
>
</
plugin
>
<
plugin
>
<!--
Guards the deliberately colliding artifact pairs: modules that ship the same fully
qualified names, one per classpath, ban their twin so a dependency tree that carries
both halves fails naming the conflict instead of failing at runtime to classpath
ordering.
-->
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-enforcer-plugin</
artifactId
>
<
version
>3.5.0</
version
>
</
plugin
>
<
plugin
>
<
groupId
>com.diffplug.spotless</
groupId
>
<
artifactId
>spotless-maven-plugin</
artifactId
>
<
version
>
${spotless.version}
</
version
>
<
configuration
>
<
java
>
<
importOrder
/>
<
removeUnusedImports
/>
<
trimTrailingWhitespace
/>
<
endWithNewline
/>
</
java
>
<
kotlin
>
<
ktlint
>
<
version
>1.5.0</
version
>
<
editorConfigOverride
>
<
ktlint_standard_no-wildcard-imports
>disabled</
ktlint_standard_no-wildcard-imports
>
<
ktlint_standard_function-naming
>disabled</
ktlint_standard_function-naming
>
<
ktlint_standard_value-parameter-comment
>disabled</
ktlint_standard_value-parameter-comment
>
<
ktlint_standard_value-argument-comment
>disabled</
ktlint_standard_value-argument-comment
>
</
editorConfigOverride
>
</
ktlint
>
<
trimTrailingWhitespace
/>
<
endWithNewline
/>
</
kotlin
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.jacoco</
groupId
>
<
artifactId
>jacoco-maven-plugin</
artifactId
>
<
version
>
${jacoco.version}
</
version
>
</
plugin
>
<
plugin
>
<
groupId
>org.codehaus.mojo</
groupId
>
<
artifactId
>flatten-maven-plugin</
artifactId
>
<
version
>1.6.0</
version
>
<
configuration
>
<
updatePomFile
>true</
updatePomFile
>
<
flattenMode
>resolveCiFriendliesOnly</
flattenMode
>
</
configuration
>
<
executions
>
<
execution
>
<
id
>flatten</
id
>
<
phase
>process-resources</
phase
>
<
goals
><
goal
>flatten</
goal
></
goals
>
</
execution
>
<
execution
>
<
id
>flatten.clean</
id
>
<
phase
>clean</
phase
>
<
goals
><
goal
>clean</
goal
></
goals
>
</
execution
>
</
executions
>
</
plugin
>
</
plugins
>
</
pluginManagement
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-enforcer-plugin</
artifactId
>
<
executions
>
<
execution
>
<
id
>require-jdk-21</
id
>
<
goals
>
<
goal
>enforce</
goal
>
</
goals
>
<
configuration
>
<
rules
>
<!--
storm-java21 compiles with the enable-preview flag, and preview compilation
only works on the matching JDK release; any other default JDK fails with a
confusing compiler error instead of this sentence.
-->
<
requireJavaVersion
>
<
version
>[21,22)</
version
>
<
message
>Storm builds on JDK 21 exactly: storm-java21 uses preview features, and preview compilation requires the matching JDK release.</
message
>
</
requireJavaVersion
>
</
rules
>
</
configuration
>
</
execution
>
<
execution
>
<
id
>require-kotlin-variant-match</
id
>
<
goals
>
<
goal
>enforce</
goal
>
</
goals
>
<
configuration
>
<
rules
>
<!--
kotlin.major.minor selects the storm-compiler-plugin variant that storm-kotlin
and storm-kotlinx-serialization compile against. It stays an explicit property
rather than a derived one, mirroring the Gradle plugin's compilerPluginVariant,
so a variant can be pinned forward for a Kotlin release the plugin predates.
Left to drift instead, the two modules silently compile against a plugin built
for another compiler generation, which surfaces far from its cause. Every
module that overrides kotlin.version therefore overrides this one too.
-->
<
evaluateBeanshell
>
<
condition
>"
${kotlin.version}
".startsWith("
${kotlin.major.minor}
.")</
condition
>
<
message
>kotlin.major.minor (
${kotlin.major.minor}
) does not match kotlin.version (
${kotlin.version}
): the storm-compiler-plugin-
${kotlin.major.minor}
variant targets another compiler generation. Set both properties together.</
message
>
</
evaluateBeanshell
>
</
rules
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.codehaus.mojo</
groupId
>
<
artifactId
>flatten-maven-plugin</
artifactId
>
</
plugin
>
<
plugin
>
<
groupId
>org.jacoco</
groupId
>
<
artifactId
>jacoco-maven-plugin</
artifactId
>
<
executions
>
<
execution
>
<
id
>prepare-agent</
id
>
<
goals
>
<
goal
>prepare-agent</
goal
>
</
goals
>
</
execution
>
<
execution
>
<
id
>report</
id
>
<
goals
>
<
goal
>report</
goal
>
</
goals
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>com.diffplug.spotless</
groupId
>
<
artifactId
>spotless-maven-plugin</
artifactId
>
<
executions
>
<
execution
>
<
goals
>
<
goal
>check</
goal
>
</
goals
>
<
phase
>verify</
phase
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-javadoc-plugin</
artifactId
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-source-plugin</
artifactId
>
</
plugin
>
</
plugins
>
</
build
>
<
profiles
>
<
profile
>
<
id
>release</
id
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-gpg-plugin</
artifactId
>
<
version
>3.0.1</
version
>
<
executions
>
<
execution
>
<
id
>sign-artifacts</
id
>
<
phase
>verify</
phase
>
<
goals
>
<
goal
>sign</
goal
>
</
goals
>
<
configuration
>
<
gpgArguments
>
<
arg
>--armor</
arg
>
<
arg
>--batch</
arg
>
<
arg
>--pinentry-mode</
arg
>
<
arg
>loopback</
arg
>
</
gpgArguments
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.sonatype.central</
groupId
>
<
artifactId
>central-publishing-maven-plugin</
artifactId
>
<
version
>0.7.0</
version
>
<
extensions
>true</
extensions
>
<
configuration
>
<
publishingServerId
>central</
publishingServerId
>
<
autoPublish
>true</
autoPublish
>
<!--
The release workflow starts jobs that resolve these artifacts from
Central (the Gradle Plugin Portal build) as soon as the deploy
returns, so the deploy must block until Central has validated and
published the bundle, not merely received it.
-->
<
waitUntil
>published</
waitUntil
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
profile
>
</
profiles
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL