Skip to content

Commit

Permalink
ProtobufBackwardsCompatibilityCheckModule currently only works with m…
Browse files Browse the repository at this point in the history
…aven, so add a dependency to Maven slug to make it explicit
  • Loading branch information
murdos committed Jan 20, 2024
1 parent f45671f commit 1a500e8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ JHipsterModuleResource protobufBackwardsCompatibilityCheckModule(ProtobufApplica
.slug(JHLiteModuleSlug.PROTOBUF_BACKWARDS_COMPATIBILITY_CHECK)
.propertiesDefinition(JHipsterModulePropertiesDefinition.builder().addBasePackage().addIndentation().build())
.apiDoc("Java", "Add protobuf backwards compatibility check")
.organization(JHipsterModuleOrganization.builder().addDependency(JHLiteModuleSlug.PROTOBUF).build())
.organization(
JHipsterModuleOrganization.builder().addDependency(JHLiteModuleSlug.PROTOBUF).addDependency(JHLiteModuleSlug.MAVEN_JAVA).build()
)
.tags("server", "protobuf")
.factory(protobuf::buildProtobufBackwardsCompatibilityCheckModule);
}
Expand Down

0 comments on commit 1a500e8

Please sign in to comment.