-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgradle.properties
69 lines (54 loc) · 2.57 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
# General
rootProject.name=event-planner
# Build information
javaVersion=17
profile=dev
version=0.1.0
# Dependency versions
jhipsterDependenciesVersion=8.1.0
# The spring-boot version should match the one managed by
# https://mvnrepository.com/artifact/tech.jhipster/jhipster-dependencies/8.0.0-rc.1
springBootVersion=3.2.2
# The hibernate version should match the one managed by
# https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/3.2.2 -->
hibernateVersion=6.4.3.Final
mapstructVersion=1.5.5.Final
archunitJunit5Version=1.0.1
jacksonDatabindNullableVersion=0.2.6
jaxbRuntimeVersion=4.0.3
# gradle plugin version
jibPluginVersion=3.3.2
gitPropertiesPluginVersion=2.4.1
gradleNodePluginVersion=5.0.0
sonarqubePluginVersion=4.2.1.3168
spotlessPluginVersion=6.19.0
openapiPluginVersion=7.2.0
noHttpCheckstyleVersion=0.0.11
checkstyleVersion=10.12.1
modernizerPluginVersion=1.8.0
liquibaseTaskPrefix=liquibase
liquibasePluginVersion=2.2.0
liquibaseVersion=4.26.0
liquibaseHibernate6Version=4.26.0
# jhipster-needle-gradle-property - JHipster will add additional properties here
## below are some 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.
## https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon
## uncomment 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
## uncomment 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
## uncomment 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
## uncomment the below line to enable the selective mode
#org.gradle.configureondemand=true