Hi folks :slightly_smiling_face:, do someone have ...
# questions
g
Hi folks 🙂, do someone have a template to setup a multi-project build with grails 6? I am using the following structure but, when I edit one of the modules, the changes are not applied after the application restarts (saving its
BootStrap.groovy
). Any idea how to solve this? @puneetbehl? application.yml
Copy code
spring:
  devtools:
    restart:
      trigger-file: BootStrap.groovy
      quiet-period: 2000
      poll-interval: 3000
      additional-paths: .
      additional-exclude:
        - '*.gsp'
        - '**/*.gsp'
        - '*.gson'
        - '**/*.gson'
        - 'logback.groovy'
        - '*.properties'
        - '**/*BootStrap.groovy'
build.gradle
Copy code
grails {
    plugins {
        implementation project(":module-1")
        implementation project(":module-2")
        implementation project(":module-3")
    }
}
p
Please check section 17 "Plugins and Multi-Project Builds" in the Grails documentation.