-
Notifications
You must be signed in to change notification settings - Fork 14
/
gradle.properties
56 lines (46 loc) · 2.12 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
rootProject.name=SpringBootBase
profile=dev
assertj_core_version=3.1.0
awaility_version=1.4.0
commons_lang_version=2.6
commons_io_version=2.4
dropwizard_metrics_version=3.1.2
javax_inject_version=1
javax_transaction_version=1.2
joda_time_hibernate_version=1.4
joda_time_version=2.5
json_path_version=2.0.0
jackson_version=2.4.6
hibernate_entitymanager_version=4.3.10.Final
HikariCP_version=2.4.0
liquibase_slf4j_version=1.2.1
liquibase_core_version=3.4.1
liquibase_hibernate4_version=3.5
hibernate_validator_version=5.2.1.Final
springfox_version=2.2.2
spring_boot_version=1.3.5.RELEASE
mysql_connector_java_version=5.1.36
h2_version=1.4.187
usertype_core_version=4.0.0.GA
lombok_version=1.16.4
## 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.
## When set to true the Gradle daemon is to run the build.
## TODO: disable daemon on CI, since builds should be clean and reliable on servers
## un comment the below line to enable the daemon
org.gradle.daemon=true
## 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 parellel 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