<%#
 Copyright 2013-2021 the original author or authors from the JHipster project.

 This file is part of the JHipster project, see https://www.jhipster.tech/
 for more information.

 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.
-%>
rootProject.name=<%= dasherizedBaseName %>
profile=dev

# Dependency versions
jhipsterDependenciesVersion=<%= JHIPSTER_DEPENDENCIES_VERSION %>
# The spring-boot version should match the one managed by
# https://mvnrepository.com/artifact/tech.jhipster/jhipster-dependencies/<%= JHIPSTER_DEPENDENCIES_VERSION %>
springBootVersion=<%= SPRING_BOOT_VERSION %>
# The hibernate version should match the one managed by
# https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/<%= SPRING_BOOT_VERSION %> -->
hibernateVersion=<%= HIBERNATE_VERSION %>
mapstructVersion=1.4.2.Final
archunitJunit5Version=0.21.0
<%_ if (enableSwaggerCodegen) { _%>
jacksonDatabindNullableVersion=<%= JACKSON_DATABIND_NULLABLE_VERSION %>
<%_ } _%>
<%_ if (cacheProviderCaffeine) { _%>
caffeineVersion=3.0.3
typesafeConfigVersion=1.4.1
<%_ } _%>
<%_ if (databaseTypeSql && !reactive) { _%>
liquibaseHibernate5Version=<%= LIQUIBASE_VERSION %>
liquibaseTaskPrefix=liquibase
<%_ } _%>

<%_ if (databaseTypeSql && reactive) { _%>
commonsBeanutilsVersion=1.9.4
<%_ } _%>

<%_ if (reactive) { _%>
blockhoundJunitPlatformVersion=1.0.6.RELEASE
junitPlatformLauncherVersion=1.7.2
<%_ } _%>

<%_ if (databaseTypeSql) { _%>
jaxbRuntimeVersion=2.3.3
<%_ } _%>
<%_ if (databaseTypeCassandra) { _%>
# The cassandra driver version should match the one managed by
# https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/<%= SPRING_BOOT_VERSION %>
cassandraDriverVersion=4.11.3
<%_ } _%>

# gradle plugin version
jibPluginVersion=<%= JIB_VERSION %>
gitPropertiesPluginVersion=2.3.1
<%_ if (!skipClient) { _%>
gradleNodePluginVersion=3.1.0
<%_ } _%>
<%_ if (databaseTypeSql && !reactive) { _%>
liquibasePluginVersion=2.0.4
<%_ } _%>
sonarqubePluginVersion=3.3
<%_ if (enableSwaggerCodegen) { _%>
openapiPluginVersion=5.2.1
<%_ } _%>
noHttpCheckstyleVersion=0.0.9
checkstyleVersion=9.0
modernizerPluginVersion=1.6.0
<%_ if (enableGradleEnterprise) { _%>
gradleEnterprisePluginVersion=3.6.4
gradleCommonCustomUserDataPluginVersion=1.4.2
<%_ } _%>
# 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.
## 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

## Install and use a local version of node and npm.
nodeInstall
