Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. rootProject.name=smart-farm
  2. profile=prod
  3. # Build properties
  4. node_version=10.14.1
  5. npm_version=6.4.1
  6. yarn_version=1.12.3
  7. # Dependency versions
  8. jhipster_dependencies_version=2.0.29
  9. # The spring-boot version should match the one managed by
  10. # https://mvnrepository.com/artifact/io.github.jhipster/jhipster-dependencies/${jhipster_dependencies_version}
  11. spring_boot_version=2.0.7.RELEASE
  12. # The hibernate version should match the one managed by
  13. # https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} -->
  14. hibernate_version=5.2.17.Final
  15. mapstruct_version=1.2.0.Final
  16. liquibase_hibernate5_version=3.6
  17. liquibaseTaskPrefix=liquibase
  18. ## below are some of the gradle performance improvement settings that can be used as required, these are not enabled by default
  19. ## The Gradle daemon aims to improve the startup and execution time of Gradle.
  20. ## The daemon is enabled by default in Gradle 3+ setting this to false will disable this.
  21. ## TODO: disable daemon on CI, since builds should be clean and reliable on servers
  22. ## https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon
  23. ## un comment the below line to disable the daemon
  24. #org.gradle.daemon=false
  25. ## Specifies the JVM arguments used for the daemon process.
  26. ## The setting is particularly useful for tweaking memory settings.
  27. ## Default value: -Xmx1024m -XX:MaxPermSize=256m
  28. ## un comment the below line to override the daemon defaults
  29. #org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
  30. ## When configured, Gradle will run in incubating parallel mode.
  31. ## This option should only be used with decoupled projects. More details, visit
  32. ## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  33. ## un comment the below line to enable parallel mode
  34. #org.gradle.parallel=true
  35. ## Enables new incubating mode that makes Gradle selective when configuring projects.
  36. ## Only relevant projects are configured which results in faster builds for large multi-projects.
  37. ## http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
  38. ## un comment the below line to enable the selective mode
  39. #org.gradle.configureondemand=true