Skip to content

Commit

Permalink
Group dummy persistences
Browse files Browse the repository at this point in the history
  • Loading branch information
DamnClin committed Aug 16, 2022
1 parent b6ba94d commit f02e9d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ JHipsterModuleResource dummyJpaPersistenceModule(DummyJpaPersistenceApplicationS
.organization(
JHipsterModuleOrganization
.builder()
.feature("dummy-persistence")
.addFeatureDependency("dummy-schema")
.addModuleDependency("springboot-cucumber-jpa-reset")
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ JHipsterModuleResource dummyMongoDBModule(DummyMongoDBPersistenceApplicationServ
.slug("dummy-mongodb-persistence")
.propertiesDefinition(JHipsterModulePropertiesDefinition.builder().addBasePackage().build())
.apiDoc(new JHipsterModuleApiDoc("Spring Boot - MVC", "Add MongoDB persistence for dummy feature"))
.organization(JHipsterModuleOrganization.builder().addModuleDependency("dummy-feature").addModuleDependency("mongock").build())
.organization(
JHipsterModuleOrganization
.builder()
.feature("dummy-persistence")
.addModuleDependency("dummy-feature")
.addModuleDependency("mongock")
.build()
)
.tags("server")
.factory(dummyMongoDBPersistence::buildModule);
}
Expand Down

0 comments on commit f02e9d2

Please sign in to comment.