Skip to content

Commit

Permalink
(Jakarta migration) Deprecate "javax" modules #123
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 25, 2023
1 parent cfadaa5 commit 064136b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class JettyCorsModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new JettyCorsModule())
.provider(this)
.description("Integrates CORS filter in Jetty")
.description("Deprecated and should be replaced with 'bootique-jetty-jakarta-cors'.")
.config("jettycors", CrossOriginFilterFactory.class)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class JettyInstrumentedModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new JettyInstrumentedModule())
.provider(this)
.description("Integrates metrics and extra logging in Jetty")
.description("Deprecated and should be replaced with 'bootique-jetty-jakarta-instrumented'.")
.overrides(JettyModule.class)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class JettyMetricsModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new JettyMetricsModule())
.provider(this)
.description("Integrates visual metrics reports in Jetty")
.description("Integrates visual metrics reports in Jetty. Deprecated with no replacement")
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class JettyWebSocketModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new JettyWebSocketModule())
.provider(this)
.description("Integrates WebSocket capabilities in Jetty")
.description("Deprecated and should be replaced with 'bootique-jetty-jakarta-websocket'.")
.config("jettywebsocket", JettyWebSocketConfiguratorFactory.class)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class JettyModuleProvider implements BQModuleProvider {
public BuiltModule buildModule() {
return BuiltModule.of(new JettyModule())
.provider(this)
.description("Integrates Jetty web server")
.description("Deprecated and should be replaced with 'bootique-jetty-jakarta'.")
.config("jetty", ServerFactory.class)
.build();
}
Expand Down

0 comments on commit 064136b

Please sign in to comment.