-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgradle.properties
116 lines (107 loc) · 4.71 KB
/
gradle.properties
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
#
# SPDX-License-Identifier: Apache-2.0
#
# Copyright 2020-2024 CROZ d.o.o, the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# suppress inspection "UnusedProperty" for the whole file
# ====================
# Version declarations
# ====================
# Note: please keep versions list sorted alphabetically if possible and if it makes sense.
# -----
# Gradle plugin versions - start
# -----
gradleEnterprisePluginVersion = 3.14
gradleJgitverPluginVersion = 0.9.1
gradleKordampPluginVersion = 0.54.0
gradleMicronautPlugin = 4.4.0
gradleTestRetryPluginVersion = 1.5.9
gradleShadowPluginVersion = 8.1.1
gradleSpockLibraryVersion = 2.3-groovy-3.0
# -----
# Gradle plugin versions - end
# -----
# Used 3rd party lib versions - start
# -----
archUnitVersion = 1.3.0
axonBomVersion = 4.9.4
classGraphVersion = 4.8.172
codeNarcVersion = 3.4.0-groovy-4.0
#codeNarcJitpackVersion = 4e516637ee
# When dataSourceProxyMicrometerSpringBootVersion is updated, check if dataSourceProxyVersion needs updating.
dataSourceProxyMicrometerSpringBootVersion = 1.0.3
dataSourceProxyVersion = 1.10
grafanaOpentelemetryStarterVersion = 1.4.0
# Update javaparserCoreVersion below whenever this groovyVersion is updated
groovyVersion = 4.0.21
hypersistenceUtils = 3.7.5
jacocoVersion = 0.8.12
# javaparser-core is a dependency of groovy-groovydoc, and its javaparserCoreVersion should be updated each time groovyVersion is updated.
javaparserCoreVersion = 3.25.10
jimfsVersion = 1.3.0
micronautVersion = 4.4.2
micronautByteBuddyVersion = 1.14.13
micronautGroovyVersion = 4.0.21
# javaparser-core version used by groovy-groovydoc at micronautGroovyVersion
micronautJavaparserCoreVersion = 3.25.10
micronautSpockVersion = 2.3-groovy-4.0
micronautWireMockVersion = 3.5.4
nrichVersion = 2.4.0
objenesisVersion = 3.4
springBootVersion = 3.2.5
spockVersion = 2.4-M4-groovy-4.0
spockReportsVersion = 2.5.1-groovy-4.0
testContainersVersion = 1.19.8
# uom - units of measurement - https://github.com/unitsofmeasurement
uomApiVersion = 2.2
uomReferenceImplementationVersion = 2.2
# uom SI units - https://github.com/unitsofmeasurement/si-units
uomSiUnitsVersion = 2.1
# uom common units - part of https://github.com/unitsofmeasurement/uom-systems
uomCommonUnitsVersion = 2.1
uuidCreatorVersion = 5.3.7
# -----
# Used 3rd party lib versions - end
# ====================
# ======================
# Docker images versions
# ======================
# Docker images versions are mainly used in Testcontainers integration tests.
# To work as expected, each Docker image version must have the 'DockerImageVersion' suffix. Such versions are converted in system properties by Gradle build scripts.
axonServerDockerImageVersion = 2024.0.2
cargotrackingBookingRdbmsManagementAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackingBookingCommandSideAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackingBookingProjectionRdbmsAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackingBookingQuerySideViewAppDockerImageVersion = 0.0.7-SNAPSHOT
grafanaAgentDockerImageVersion = v0.40.5
postgreSqlDockerImageVersion = 16.3
# ======================
# =========================================
# System properties for the entire project.
# =========================================
# On OSX, prevents showing up Java icon in the dock during executing Gradle tasks. This might occur when tasks initialize the Java AWT subsystem for some reason.
# Alternatively, if the headless property shows up as too restrictive, one can use "systemProp.apple.awt.UIElement=true"
# https://mathematica.stackexchange.com/questions/141776/j-link-stealing-focus-from-the-front-end-on-os-x-workaround/141881#141881
systemProp.java.awt.headless = true
# Disabling test retry feature from Gradle Enterprise plugin since we are using the independent open source project
systemProp.gradle.enterprise.testretry.enabled = false
# =========================================
# =================
# Gradle properties
# =================
# Need to increase Gradle JVM memory a bit, since groovydoc tasks reports out of memory.
# Helpful documentation link: https://docs.gradle.org/current/userguide/build_environment.html#sec:configuring_jvm_memory
org.gradle.jvmargs = -Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# =================