jhipster / jhipster-lite

JHipster Lite ⚡ is a development platform to generate, develop & deploy modern web applications & microservices architecture, step by step - using Hexagonal Architecture :gem:

Home Page:https://www.jhipster.tech/jhipster-lite/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CI: themleafapp at generator.sh add the same module thymeleaf-template twice

renanfranca opened this issue · comments

Now:

elif [[ $application == 'thymeleafapp' ]]; then
  maven
  spring_boot_mvc
  sonar_back

  applyModules \
    "spring-boot-thymeleaf" \
    "thymeleaf-template" \
    "thymeleaf-template-tailwindcss" \
    "webjars-locator" \
    "htmx-webjars" \
    "thymeleaf-template" \
    "thymeleaf-template-htmx-webjars"

else

Should be:

elif [[ $application == 'thymeleafapp' ]]; then
  maven
  spring_boot_mvc
  sonar_back

  applyModules \
    "spring-boot-thymeleaf" \
    "thymeleaf-template" \
    "thymeleaf-template-tailwindcss" \
    "webjars-locator" \
    "htmx-webjars" \
    "thymeleaf-template-htmx-webjars"

else