gradle.properties 2.8 KB

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