forked from croz-ltd/klokwrk-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
96 lines (87 loc) · 3.64 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
#
# SPDX-License-Identifier: Apache-2.0
#
# Copyright 2020-2021 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 whole file
# ====================
# Version declarations
# ====================
# Note: please keep versions list sorted alphabetically if possible and if makes sense.
# -----
# Gradle plugin versions - start
# -----
gradleJgitverPluginVersion = 0.9.1
gradleKordampPluginVersion = 0.47.0
gradleMicronautPlugin = 2.0.7
gradleTestRetryPluginVersion = 1.3.1
gradleShadowPlugin = 7.1.0
# -----
# Gradle plugin versions - end
# -----
# Used 3rd party lib versions - start
# -----
archUnitVersion = 0.21.0
axonFrameworkVersion = 4.5.4
classGraphVersion = 4.8.128
codeNarcVersion = 2.2.0
#codeNarcJitpackVersion = 4e516637ee
dataSourceProxyVersion = 1.7
groovyVersion = 3.0.9
jacocoVersion = 0.8.7
# javaparser-core is a dependency of groovy-groovydoc, and its version should be updated each time when groovyVersion is updated.
javaparserCoreVersion = 3.18.0
jimfsVersion = 1.2
micronautVersion = 3.1.1
openTracingSpringCloudVersion = 0.5.9
slf4jTestVersion = 1.2.0
springBootVersion = 2.5.6
spockVersion = 2.0-groovy-3.0
testContainersVersion = 1.16.2
# uom - units of measurement - https://github.com/unitsofmeasurement
uomApiVersion = 2.1.2
uomReferenceImplementationVersion = 2.1.2
wavefrontSpringBootVersion = 2.2.0
wireMockVersion = 2.28.0
# -----
# 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 'DockerImageVersion' suffix. Such versions are converted in system properties by Gradle build scripts.
axonServerDockerImageVersion = 4.5.8
cargotrackerBookingRdbmsManagementAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackerBookingCommandSideAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackerBookingRdbmsProjectionAppDockerImageVersion = 0.0.7-SNAPSHOT
cargotrackerBookingQuerySideAppDockerImageVersion = 0.0.7-SNAPSHOT
postgreSqlDockerImageVersion = 14.0
# ======================
# =========================================
# 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 initializes Java awt subsystem for some reason.
# Alternatively, if 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
# =========================================
# =================
# 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
# =================