Skip to content

Commit

Permalink
Merge pull request #7569 from pascalgrimaud/fix-missing-dependency-to…
Browse files Browse the repository at this point in the history
…-logs-spy-module

Fix missing dependency to logs-spy module
  • Loading branch information
pascalgrimaud authored Sep 26, 2023
2 parents f4caf54 + 6e60ebc commit d42b2e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ JHipsterModuleResource liquibaseModule(LiquibaseApplicationService liquibase) {
.slug(LIQUIBASE)
.propertiesDefinition(JHipsterModulePropertiesDefinition.builder().addIndentation().addBasePackage().build())
.apiDoc("Spring Boot - Database Migration", "Add Liquibase")
.organization(JHipsterModuleOrganization.builder().feature(DATABASE_MIGRATION).addDependency(JPA_PERSISTENCE).build())
.organization(
JHipsterModuleOrganization.builder().feature(DATABASE_MIGRATION).addDependency(JPA_PERSISTENCE).addDependency(LOGS_SPY).build()
)
.tags("server", "spring", "spring-boot", "database", "migration", "liquibase")
.factory(liquibase::buildModule);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ private JHipsterModulePropertiesDefinition properties() {
}

private JHipsterModuleOrganization mvcServerOrganization() {
return JHipsterModuleOrganization.builder().feature(SPRING_MVC_SERVER).addDependency(SPRING_BOOT_MVC_EMPTY).build();
return JHipsterModuleOrganization
.builder()
.feature(SPRING_MVC_SERVER)
.addDependency(SPRING_BOOT_MVC_EMPTY)
.addDependency(LOGS_SPY)
.build();
}
}

0 comments on commit d42b2e8

Please sign in to comment.