-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgradle.properties
83 lines (66 loc) · 3.14 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
rootProject.name=interaction
profile=dev
version=2.0.9
# Build properties
node_version=12.13.0
npm_version=6.13.0
yarn_version=1.19.0
# Dependency versions
jhipster_dependencies_version=3.0.7
# The spring-boot version should match the one managed by
# https://mvnrepository.com/artifact/io.github.jhipster/jhipster-dependencies/${jhipster_dependencies_version}
spring_boot_version=2.1.10.RELEASE
# The hibernate version should match the one managed by
# https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} -->
hibernate_version=5.3.13.Final
mapstruct_version=1.3.1.Final
archunit_junit5_version=0.12.0
jackson_databind_nullable_version=0.2.0
# to avoid security issues
# BDSA-2020-0361 (CVE-2020-9547) BDSA-2020-0487 (CVE-2020-10673) BDSA-2020-0584 (CVE-2020-11113) BDSA-2020-0354 (CVE-2020-9548)
jackson_databind_version=2.9.10.4
liquibase_hibernate5_version=3.6
liquibaseTaskPrefix=liquibase
jaxb_runtime_version=2.3.2
# gradle plugin version
jib_plugin_version=1.7.0
git_properties_plugin_version=2.2.0
apt_plugin_version=0.21
liquibase_plugin_version=2.0.1
sonarqube_plugin_version=2.8
openapi_plugin_version=4.2.2
checkstyle_version=7.6.1
spotbugs_version=3.0.0
pmd_version=5.5.4
spring_dependency_management_version=1.0.6.RELEASE
## XM custom properties
lombok_version=1.18.10
xm_commons_version=2.2.22
jgit_version=4.11.0.201803080745-r
system_rules_version=1.17.2
metrics_spring_version=3.1.3
problem_spring_web_version=0.25.2
liquibase_slf4j_version=2.0.0
# jhipster-needle-gradle-property - JHipster will add additional properties here
## below are some of the gradle performance improvement settings that can be used as required, these are not enabled by default
## The Gradle daemon aims to improve the startup and execution time of Gradle.
## The daemon is enabled by default in Gradle 3+ setting this to false will disable this.
## TODO: disable daemon on CI, since builds should be clean and reliable on servers
## https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon
## un comment the below line to disable the daemon
#org.gradle.daemon=false
## Specifies the JVM arguments used for the daemon process.
## The setting is particularly useful for tweaking memory settings.
## Default value: -Xmx1024m -XX:MaxPermSize=256m
## un comment the below line to override the daemon defaults
#org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
## When configured, Gradle will run in incubating parallel mode.
## This option should only be used with decoupled projects. More details, visit
## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
## un comment the below line to enable parallel mode
#org.gradle.parallel=true
## Enables new incubating mode that makes Gradle selective when configuring projects.
## Only relevant projects are configured which results in faster builds for large multi-projects.
## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
## un comment the below line to enable the selective mode
#org.gradle.configureondemand=true