Skip to content

Commit

Permalink
(Jakarta migration) Deprecate JAX RS 2 modules #28
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 25, 2023
1 parent 2392bd4 commit 3cdb019
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class MvcFreemarkerModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcFreemarkerModule())
.provider(this)
.description("Integrates Freemarker-based renderer for bootique-mvc.")
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta-freemarker'.")
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MvcMustacheModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcMustacheModule())
.provider(this)
.description("Integrates Mustache-based renderer for bootique-mvc.")
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta-mustache'.")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MvcModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new MvcModule())
.provider(this)
.description("Provides Bootique's own REST-based web MVC engine with pluggable view renderers.")
.description("Deprecated and can be replaced with 'bootique-mvc-jakarta'.")
.config("mvc", MvcFactory.class)
.build();
}
Expand Down

0 comments on commit 3cdb019

Please sign in to comment.