gradle.properties 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. rootProject.name=ecsp
  2. profile=dev
  3. # Dependency versions
  4. jhipsterDependenciesVersion=7.8.1
  5. # The spring-boot version should match the one managed by
  6. # https://mvnrepository.com/artifact/tech.jhipster/jhipster-dependencies/7.8.1
  7. springBootVersion=2.6.6
  8. # The hibernate version should match the one managed by
  9. # https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/2.6.6 -->
  10. hibernateVersion=5.6.7.Final
  11. mapstructVersion=1.4.2.Final
  12. archunitJunit5Version=0.22.0
  13. liquibaseHibernate5Version=4.6.1
  14. liquibaseTaskPrefix=liquibase
  15. jaxbRuntimeVersion=2.3.3
  16. # gradle plugin version
  17. jibPluginVersion=3.2.1
  18. gitPropertiesPluginVersion=2.4.0
  19. liquibasePluginVersion=2.1.1
  20. sonarqubePluginVersion=3.3
  21. noHttpCheckstyleVersion=0.0.10
  22. checkstyleVersion=10.1
  23. modernizerPluginVersion=1.6.2
  24. # jhipster-needle-gradle-property - JHipster will add additional properties here
  25. ## below are some of the gradle performance improvement settings that can be used as required, these are not enabled by default
  26. ## The Gradle daemon aims to improve the startup and execution time of Gradle.
  27. ## The daemon is enabled by default in Gradle 3+ setting this to false will disable this.
  28. ## https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon
  29. ## uncomment the below line to disable the daemon
  30. #org.gradle.daemon=false
  31. ## Specifies the JVM arguments used for the daemon process.
  32. ## The setting is particularly useful for tweaking memory settings.
  33. ## Default value: -Xmx1024m -XX:MaxPermSize=256m
  34. ## uncomment the below line to override the daemon defaults
  35. #org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
  36. ## When configured, Gradle will run in incubating parallel mode.
  37. ## This option should only be used with decoupled projects. More details, visit
  38. ## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  39. ## uncomment the below line to enable parallel mode
  40. #org.gradle.parallel=true
  41. ## Enables new incubating mode that makes Gradle selective when configuring projects.
  42. ## Only relevant projects are configured which results in faster builds for large multi-projects.
  43. ## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
  44. ## uncomment the below line to enable the selective mode
  45. #org.gradle.configureondemand=true
  46. ## Install and use a local version of node and npm.
  47. nodeInstall