Skip to content
Failed

Changes

Summary

  1. Fix thread leak/invasion (details)
  2. ee10 versions update (details)
  3. 3.1.6 (details)
  4. 3.1.99-SNAPSHOT (details)
  5. Expect100Continue test fixed for NettyConnector (details)
Commit de5271312abc8e070beedaed665a179ff810133f by 15908245+jansupol
Fix thread leak/invasion

Jersey/Jetty, at least in the 3.1 version line, creates one thread for each HTTP request. This behavior was introduced with #5372 and seems not present in the 2.x or 3.x versions of Jersey.

From the javadoc of `java.util.Timer`:
```
Implementation note: All constructors start a timer thread.
...
After the last live reference to a Timer object goes away and all outstanding tasks have completed execution, the timer's task execution thread terminates gracefully (and becomes subject to garbage collection). However, this can take arbitrarily long to occur.
```
It is fair to assume that "arbitrarily long" may also mean _never_, in case GC never runs.

This change replaces the timer & thread per request with a `ScheduledExecutorService` instance per `JettyHttpContainer`.

Also changed the set-timeout mechanism to use `System.nanoTime()` instead of `System.currentTimeMillis()`, because the latter is prone to wall-clock drift and can result into wrong timeout values.

Fixes #5588

Signed-off-by: Robert Stupp <snazy@snazy.de>
The file was modified containers/jetty-http/src/main/java17/org/glassfish/jersey/jetty/JettyHttpContainer.java (diff)
Commit 55c57bf79bdc33cb9b9d9a5fb5ef5a9f128f48fb by Maxim Nesen
ee10 versions update

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified etc/jenkins/Jenkinsfile_ci_build (diff)
The file was modified connectors/jetty11-connector/pom.xml (diff)
The file was modified connectors/jetty-http2-connector/pom.xml (diff)
The file was modified media/json-binding/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified containers/jetty11-http/pom.xml (diff)
The file was modified ext/bean-validation/pom.xml (diff)
The file was modified ext/cdi/jersey-weld2-se/pom.xml (diff)
The file was modified media/moxy/pom.xml (diff)
The file was modified tests/integration/client-connector-provider/pom.xml (diff)
The file was modified tests/e2e-inject/cdi2-se/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-log-check/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak/pom.xml (diff)
The file was modified examples/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-autodiscovery-1/pom.xml (diff)
The file was modified tests/performance/test-cases/param-srl/pom.xml (diff)
The file was modified test-framework/providers/jetty/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified core-common/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-global/pom.xml (diff)
The file was modified tests/performance/test-cases/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-hello-world-app-ref/pom.xml (diff)
The file was modified connectors/jnh-connector/pom.xml (diff)
The file was modified core-server/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/bean-param-leak/pom.xml (diff)
The file was modified docs/pom.xml (diff)
The file was modified tests/osgi/functional/pom.xml (diff)
The file was modified examples/http-trace/pom.xml (diff)
The file was modified examples/server-sent-events-jersey/pom.xml (diff)
The file was modified test-framework/util/pom.xml (diff)
The file was modified ext/spring6/pom.xml (diff)
The file was modified ext/mvc/pom.xml (diff)
The file was modified incubator/declarative-linking/pom.xml (diff)
The file was modified tests/integration/microprofile/rest-client-tck/pom.xml (diff)
The file was modified tests/integration/reactive-streams/sse/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-json-jackson/pom.xml (diff)
The file was modified examples/clipboard/pom.xml (diff)
The file was modified security/oauth1-signature/pom.xml (diff)
The file was modified media/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-1/pom.xml (diff)
The file was modified tests/performance/runners/jersey-grizzly-runner/pom.xml (diff)
The file was modified security/oauth2-client/pom.xml (diff)
The file was modified archetypes/jersey-heroku-webapp/pom.xml (diff)
The file was modified tests/e2e-testng/pom.xml (diff)
The file was modified tests/integration/jersey-2776/pom.xml (diff)
The file was modified tests/integration/j-441/war2/pom.xml (diff)
The file was modified examples/server-async-managed/pom.xml (diff)
The file was modified tests/integration/jersey-4507/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-dynamic/pom.xml (diff)
The file was modified archetypes/jersey-example-java8-webapp/pom.xml (diff)
The file was modified examples/helloworld-cdi2-se/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-3/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-2/pom.xml (diff)
The file was modified tests/integration/jersey-2184/pom.xml (diff)
The file was modified containers/jersey-servlet-core/pom.xml (diff)
The file was modified incubator/kryo/pom.xml (diff)
The file was modified test-framework/providers/grizzly2/pom.xml (diff)
The file was modified test-framework/providers/jetty-http2/pom.xml (diff)
The file was modified tests/performance/benchmarks/pom.xml (diff)
The file was modified tests/integration/jersey-4949/pom.xml (diff)
The file was modified core-client/pom.xml (diff)
The file was modified examples/http-patch/pom.xml (diff)
The file was modified examples/entity-filtering/pom.xml (diff)
The file was modified media/json-binding/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/pom.xml (diff)
The file was modified containers/glassfish/jersey-gf-ejb/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-kryo/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/war1/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-singleton/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-8/pom.xml (diff)
The file was modified examples/sse-item-store-jersey-webapp/pom.xml (diff)
The file was modified examples/https-clientserver-grizzly/pom.xml (diff)
The file was modified ext/cdi/jersey-weld2-se/pom.xml (diff)
The file was modified test-framework/providers/external/pom.xml (diff)
The file was modified tests/integration/j-59/war/pom.xml (diff)
The file was modified tests/integration/servlet-3-gf-async/pom.xml (diff)
The file was modified test-framework/providers/jdk-http/pom.xml (diff)
The file was modified examples/server-async/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-json-moxy/pom.xml (diff)
The file was modified containers/glassfish/pom.xml (diff)
The file was modified ext/microprofile/mp-rest-client/pom.xml (diff)
The file was modified examples/rest31-sebootstrap-multipart/pom.xml (diff)
The file was modified test-framework/providers/pom.xml (diff)
The file was modified tests/integration/cdi-integration/gf-cdi-inject/pom.xml (diff)
The file was modified examples/jaxrs-types-injection/pom.xml (diff)
The file was modified media/sse/pom.xml (diff)
The file was modified tests/e2e-inject/hk2/pom.xml (diff)
The file was modified tests/integration/jersey-3662/pom.xml (diff)
The file was modified tests/release-test/pom.xml (diff)
The file was modified connectors/grizzly-connector/pom.xml (diff)
The file was modified tests/integration/jersey-2612/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-3/pom.xml (diff)
The file was modified containers/grizzly2-http/pom.xml (diff)
The file was modified tests/integration/microprofile/pom.xml (diff)
The file was modified connectors/jetty-connector/pom.xml (diff)
The file was modified examples/oauth-client-twitter/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-resource-with-at-context/pom.xml (diff)
The file was modified ext/pom.xml (diff)
The file was modified security/oauth1-server/pom.xml (diff)
The file was modified security/oauth1-client/pom.xml (diff)
The file was modified bundles/jaxrs-ri/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-test-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-2176/pom.xml (diff)
The file was modified connectors/pom.xml (diff)
The file was modified examples/https-server-glassfish/pom.xml (diff)
The file was modified tests/integration/externalproperties/pom.xml (diff)
The file was modified tests/integration/servlet-3-filter/pom.xml (diff)
The file was modified incubator/gae-integration/pom.xml (diff)
The file was modified tests/integration/thin-server/pom.xml (diff)
The file was modified examples/micrometer/pom.xml (diff)
The file was modified containers/jetty11-http/pom.xml (diff)
The file was modified test-framework/providers/bundle/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-global/pom.xml (diff)
The file was modified tests/integration/jersey-4003/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/ear/pom.xml (diff)
The file was modified tests/integration/servlet-request-wrapper-binding-2/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/war1/pom.xml (diff)
The file was modified examples/managed-client/pom.xml (diff)
The file was modified tests/integration/jersey-2421/pom.xml (diff)
The file was modified tests/integration/jersey-2137/pom.xml (diff)
The file was modified tests/integration/pom.xml (diff)
The file was modified examples/groovy/pom.xml (diff)
The file was modified tests/integration/sonar-test/pom.xml (diff)
The file was modified containers/jetty-http/pom.xml (diff)
The file was modified examples/jaxb/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-7/pom.xml (diff)
The file was modified connectors/jetty11-connector/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-validation/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-autodiscovery-2/pom.xml (diff)
The file was modified tests/integration/jersey-4722/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-6/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/pom.xml (diff)
The file was modified examples/sse-item-store-jaxrs-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-4321/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-1/pom.xml (diff)
The file was modified tests/integration/jersey-2654/pom.xml (diff)
The file was modified tests/integration/servlet-4.0-mvc-1/pom.xml (diff)
The file was modified tests/integration/jersey-2322/pom.xml (diff)
The file was modified examples/bookstore-webapp/pom.xml (diff)
The file was modified incubator/cdi-inject-weld/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-5/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-servlet/pom.xml (diff)
The file was modified examples/helloworld-spring-annotations/pom.xml (diff)
The file was modified connectors/jetty-http2-connector/pom.xml (diff)
The file was modified tests/e2e/pom.xml (diff)
The file was modified ext/microprofile/mp-config/pom.xml (diff)
The file was modified tests/integration/tracing-support/pom.xml (diff)
The file was modified tests/integration/ejb-test-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-3/pom.xml (diff)
The file was modified bundles/pom.xml (diff)
The file was modified containers/simple-http/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/war2/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-no-jersey-app/pom.xml (diff)
The file was modified examples/json-moxy/pom.xml (diff)
The file was modified tests/integration/jersey-2160/pom.xml (diff)
The file was modified connectors/netty-connector/pom.xml (diff)
The file was modified test-framework/memleak-test-common/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-4/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-name/pom.xml (diff)
The file was modified archetypes/jersey-quickstart-grizzly2/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/war2/pom.xml (diff)
The file was modified ext/mvc-freemarker/pom.xml (diff)
The file was modified tests/integration/jaxrs-component-inject/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-text-plain/pom.xml (diff)
The file was modified examples/multipart-webapp/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/leaking-test-app/pom.xml (diff)
The file was modified examples/json-binding-webapp/pom.xml (diff)
The file was modified tests/integration/microprofile/config/helidon/pom.xml (diff)
The file was modified examples/servlet3-webapp/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi-rs-inject/pom.xml (diff)
The file was modified test-framework/core/pom.xml (diff)
The file was modified tests/integration/cdi-integration/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-6/pom.xml (diff)
The file was modified tests/jmockit/pom.xml (diff)
The file was modified ext/rx/pom.xml (diff)
The file was modified tests/integration/jersey-1960/pom.xml (diff)
The file was modified tests/integration/jersey-2167/pom.xml (diff)
The file was modified ext/microprofile/pom.xml (diff)
The file was modified tests/integration/j-59/ear/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-1/pom.xml (diff)
The file was modified inject/pom.xml (diff)
The file was modified tests/integration/cdi-integration/context-inject-on-server/pom.xml (diff)
The file was modified connectors/helidon-connector/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-2/pom.xml (diff)
The file was modified test-framework/maven/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-client/pom.xml (diff)
The file was modified tests/e2e-server/pom.xml (diff)
The file was modified tests/integration/spring6/pom.xml (diff)
The file was modified tests/e2e-inject/cdi-inject-weld/pom.xml (diff)
The file was modified tests/integration/jersey-1883/pom.xml (diff)
The file was modified tests/integration/j-59/pom.xml (diff)
The file was modified examples/assemblies/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-5/pom.xml (diff)
The file was modified examples/helloworld-programmatic/pom.xml (diff)
The file was modified examples/server-sent-events-jaxrs/pom.xml (diff)
The file was modified tests/integration/servlet-request-wrapper-binding/pom.xml (diff)
The file was modified examples/reload/pom.xml (diff)
The file was modified ext/mvc-jsp/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/pom.xml (diff)
The file was modified test-framework/pom.xml (diff)
The file was modified tests/integration/jersey-2164/pom.xml (diff)
The file was modified inject/cdi2-se/pom.xml (diff)
The file was modified examples/open-tracing/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-leaking-test-app/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak-client/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x/pom.xml (diff)
The file was modified test-framework/maven/container-runner-maven-plugin/pom.xml (diff)
The file was modified tests/integration/j-376/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-transaction/pom.xml (diff)
The file was modified inject/hk2/pom.xml (diff)
The file was modified ext/wadl-doclet/pom.xml (diff)
The file was modified ext/mvc-bean-validation/pom.xml (diff)
The file was modified incubator/injectless-client/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/pom.xml (diff)
The file was modified tests/osgi/pom.xml (diff)
The file was modified examples/simple-console/pom.xml (diff)
The file was modified examples/xml-moxy/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-manually-bound/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/war/pom.xml (diff)
The file was modified examples/server-async-standalone/pom.xml (diff)
The file was modified examples/helloworld-spring-webapp/pom.xml (diff)
The file was modified examples/declarative-linking/pom.xml (diff)
The file was modified examples/freemarker-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-1604/pom.xml (diff)
The file was modified tests/integration/jersey-2673/pom.xml (diff)
The file was modified tests/performance/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/ear/pom.xml (diff)
The file was modified tests/integration/jersey-2551/pom.xml (diff)
The file was modified tests/integration/jersey-2794/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-inflector-1/pom.xml (diff)
The file was modified tests/integration/servlet-3-chunked-io/pom.xml (diff)
The file was modified ext/cdi/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/additional-bundle/pom.xml (diff)
The file was modified examples/bookmark/pom.xml (diff)
The file was modified tests/integration/jersey-1223/pom.xml (diff)
The file was modified tests/integration/jersey-1964/pom.xml (diff)
The file was modified tests/integration/j-441/pom.xml (diff)
The file was modified tests/integration/jersey-2255/pom.xml (diff)
The file was modified examples/configured-client/pom.xml (diff)
The file was modified tests/performance/runners/pom.xml (diff)
The file was modified containers/netty-http/pom.xml (diff)
The file was modified tests/integration/jersey-3796/pom.xml (diff)
The file was modified ext/proxy-client/pom.xml (diff)
The file was modified examples/webapp-example-parent/pom.xml (diff)
The file was modified tests/pom.xml (diff)
The file was modified tests/e2e-tls/pom.xml (diff)
The file was modified tests/integration/microprofile/config/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-filter/pom.xml (diff)
The file was modified examples/entity-filtering-selectable/pom.xml (diff)
The file was modified tests/integration/j-441/war1/pom.xml (diff)
The file was modified examples/jersey-ejb/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/lib/pom.xml (diff)
The file was modified containers/jdk-http/pom.xml (diff)
The file was modified tests/integration/jersey-1928/pom.xml (diff)
The file was modified ext/bean-validation/pom.xml (diff)
The file was modified tests/integration/security-digest/pom.xml (diff)
The file was modified media/multipart/pom.xml (diff)
The file was modified tests/integration/jersey-4099/pom.xml (diff)
The file was modified incubator/html-json/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified tests/integration/jersey-3670/pom.xml (diff)
The file was modified examples/system-properties-example/pom.xml (diff)
The file was modified examples/clipboard-programmatic/pom.xml (diff)
The file was modified tests/integration/jersey-2637/pom.xml (diff)
The file was modified tests/integration/jersey-4697/pom.xml (diff)
The file was modified examples/java8-webapp/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-xml-jaxb/pom.xml (diff)
The file was modified examples/helloworld-netty/pom.xml (diff)
The file was modified tests/integration/asm/pom.xml (diff)
The file was modified archetypes/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/ear/pom.xml (diff)
The file was modified tests/integration/jersey-2892/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/pom.xml (diff)
The file was modified tests/integration/jersey-780/pom.xml (diff)
The file was modified ext/rx/rx-client-guava/pom.xml (diff)
The file was modified tests/integration/jersey-4542/pom.xml (diff)
The file was modified test-framework/maven/custom-enforcer-rules/pom.xml (diff)
The file was modified ext/mvc-mustache/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/pom.xml (diff)
The file was modified media/json-jackson/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-8/pom.xml (diff)
The file was modified tests/integration/servlet-tests/pom.xml (diff)
The file was modified containers/grizzly2-servlet/pom.xml (diff)
The file was modified tests/integration/async-jersey-filter/pom.xml (diff)
The file was modified containers/jetty-servlet/pom.xml (diff)
The file was modified examples/json-jackson/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-7/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-custom-provider/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-ban-custom-hk2-binding/pom.xml (diff)
The file was modified incubator/open-tracing/pom.xml (diff)
The file was modified tests/integration/jersey-2335/pom.xml (diff)
The file was modified tests/integration/jersey-2704/pom.xml (diff)
The file was modified tests/e2e-core-common/pom.xml (diff)
The file was modified tests/integration/jersey-2878/pom.xml (diff)
The file was modified tests/mem-leaks/pom.xml (diff)
The file was modified examples/helloworld-webapp/pom.xml (diff)
The file was modified examples/json-processing-webapp/pom.xml (diff)
The file was modified examples/bookmark-em/pom.xml (diff)
The file was modified tests/integration/jersey-2154/pom.xml (diff)
The file was modified tests/integration/j-441/ear/pom.xml (diff)
The file was modified tests/integration/jackson-14/pom.xml (diff)
The file was modified examples/helloworld-pure-jax-rs/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-2/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-dynamic/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-provider/pom.xml (diff)
The file was modified tests/performance/tools/pom.xml (diff)
The file was modified ext/rx/rx-client-rxjava2/pom.xml (diff)
The file was modified examples/sse-twitter-aggregator/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/lib/pom.xml (diff)
The file was modified test-framework/providers/netty/pom.xml (diff)
The file was modified examples/entity-filtering-security/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-xml-moxy/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-client-on-server/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-reload/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/pom.xml (diff)
The file was modified media/json-gson/pom.xml (diff)
The file was modified bundles/apidocs/pom.xml (diff)
The file was modified tests/integration/reactive-streams/pom.xml (diff)
The file was modified test-framework/providers/simple/pom.xml (diff)
The file was modified tests/integration/servlet-3-sse-1/pom.xml (diff)
The file was modified tests/e2e-inject/pom.xml (diff)
The file was modified examples/managed-client-simple-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-3-params/pom.xml (diff)
The file was modified tests/performance/test-cases/proxy-injection/pom.xml (diff)
The file was modified bundles/examples/pom.xml (diff)
The file was modified tests/stress/pom.xml (diff)
The file was modified tests/integration/jersey-2846/pom.xml (diff)
The file was modified tests/integration/property-check/pom.xml (diff)
The file was modified containers/jersey-servlet/pom.xml (diff)
The file was modified connectors/apache5-connector/pom.xml (diff)
The file was modified tests/integration/jersey-3992/pom.xml (diff)
The file was modified examples/json-with-padding/pom.xml (diff)
The file was modified test-framework/providers/inmemory/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-threadlocals-app/pom.xml (diff)
The file was modified archetypes/jersey-quickstart-webapp/pom.xml (diff)
The file was modified examples/exception-mapping/pom.xml (diff)
The file was modified media/jaxb/pom.xml (diff)
The file was modified tests/integration/j-59/lib/pom.xml (diff)
The file was modified tests/integration/servlet-3-async/pom.xml (diff)
The file was modified examples/managed-client-webapp/pom.xml (diff)
The file was modified examples/server-async-standalone/client/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/alternate-version-bundle/pom.xml (diff)
The file was modified examples/helloworld/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/functional-test/pom.xml (diff)
The file was modified tests/e2e-client/pom.xml (diff)
The file was modified media/json-jettison/pom.xml (diff)
The file was modified connectors/jdk-connector/pom.xml (diff)
The file was modified examples/helloworld-benchmark/pom.xml (diff)
The file was modified media/json-processing/pom.xml (diff)
The file was modified ext/entity-filtering/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/pom.xml (diff)
The file was modified media/moxy/pom.xml (diff)
The file was modified tests/integration/jersey-2136/pom.xml (diff)
The file was modified tests/integration/jersey-2689/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-name/pom.xml (diff)
The file was modified tests/integration/jersey-1107/pom.xml (diff)
The file was modified examples/rx-client-webapp/pom.xml (diff)
The file was modified incubator/pom.xml (diff)
The file was modified tests/integration/servlet-3-inflector-1/pom.xml (diff)
The file was modified tests/integration/jersey-5087/pom.xml (diff)
The file was modified examples/server-async-standalone/webapp/pom.xml (diff)
The file was modified tests/e2e-entity/pom.xml (diff)
The file was modified tests/integration/microprofile/rest-client/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-9/pom.xml (diff)
The file was modified tests/performance/test-cases/assemblies/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/pom.xml (diff)
The file was modified containers/jetty-http2/pom.xml (diff)
The file was modified examples/extended-wadl-webapp/pom.xml (diff)
The file was modified examples/managed-beans-webapp/pom.xml (diff)
The file was modified security/pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified examples/cdi-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-1667/pom.xml (diff)
The file was modified ext/rx/rx-client-rxjava/pom.xml (diff)
The file was modified containers/pom.xml (diff)
The file was modified tests/integration/jersey-2031/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-4/pom.xml (diff)
The file was modified examples/json-jettison/pom.xml (diff)
The file was modified connectors/apache-connector/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/lib-bundle/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/war-bundle/pom.xml (diff)
The file was modified ext/micrometer/pom.xml (diff)
The file was modified ext/metainf-services/pom.xml (diff)
The file was modified tests/integration/microprofile/config/webapp/pom.xml (diff)
The file was modified tests/e2e-inject/cdi-inject-weld/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/pom.xml (diff)
The file was modified tests/integration/jersey-3662/pom.xml (diff)
The file was modified archetypes/jersey-heroku-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-2/pom.xml (diff)
The file was modified ext/metainf-services/pom.xml (diff)
The file was modified bundles/pom.xml (diff)
The file was modified tests/integration/jersey-2612/pom.xml (diff)
The file was modified tests/integration/jersey-3992/pom.xml (diff)
The file was modified tests/integration/jersey-2637/pom.xml (diff)
The file was modified examples/rx-client-webapp/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/war1/pom.xml (diff)
The file was modified tests/performance/pom.xml (diff)
The file was modified ext/rx/rx-client-rxjava2/pom.xml (diff)
The file was modified tests/integration/jersey-2184/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-no-jersey-app/pom.xml (diff)
The file was modified tests/performance/test-cases/assemblies/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/ear/pom.xml (diff)
The file was modified ext/spring6/pom.xml (diff)
The file was modified examples/clipboard/pom.xml (diff)
The file was modified tests/performance/tools/pom.xml (diff)
The file was modified examples/helloworld-pure-jax-rs/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-2/pom.xml (diff)
The file was modified examples/jaxb/pom.xml (diff)
The file was modified test-framework/memleak-test-common/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/lib-bundle/pom.xml (diff)
The file was modified security/oauth1-server/pom.xml (diff)
The file was modified tests/integration/cdi-integration/context-inject-on-server/pom.xml (diff)
The file was modified tests/e2e-server/pom.xml (diff)
The file was modified containers/glassfish/pom.xml (diff)
The file was modified containers/pom.xml (diff)
The file was modified tests/integration/j-59/lib/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak/pom.xml (diff)
The file was modified ext/cdi/jersey-weld2-se/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/pom.xml (diff)
The file was modified examples/assemblies/pom.xml (diff)
The file was modified incubator/injectless-client/pom.xml (diff)
The file was modified tests/integration/microprofile/config/helidon/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-7/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-test-webapp/pom.xml (diff)
The file was modified connectors/pom.xml (diff)
The file was modified examples/json-binding-webapp/pom.xml (diff)
The file was modified connectors/helidon-connector/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-hello-world-app-ref/pom.xml (diff)
The file was modified tests/release-test/pom.xml (diff)
The file was modified ext/microprofile/pom.xml (diff)
The file was modified connectors/apache-connector/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-autodiscovery-1/pom.xml (diff)
The file was modified examples/entity-filtering-security/pom.xml (diff)
The file was modified connectors/jetty11-connector/pom.xml (diff)
The file was modified ext/rx/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-6/pom.xml (diff)
The file was modified test-framework/providers/simple/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-xml-jaxb/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-5/pom.xml (diff)
The file was modified examples/simple-console/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-3/pom.xml (diff)
The file was modified examples/helloworld-benchmark/pom.xml (diff)
The file was modified tests/integration/jersey-2176/pom.xml (diff)
The file was modified tests/integration/pom.xml (diff)
The file was modified tests/integration/spring6/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-manually-bound/pom.xml (diff)
The file was modified examples/helloworld-programmatic/pom.xml (diff)
The file was modified examples/entity-filtering-selectable/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-client-on-server/pom.xml (diff)
The file was modified tests/e2e-inject/hk2/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-4/pom.xml (diff)
The file was modified ext/bean-validation/pom.xml (diff)
The file was modified examples/server-sent-events-jersey/pom.xml (diff)
The file was modified examples/helloworld-netty/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/leaking-test-app/pom.xml (diff)
The file was modified examples/open-tracing/pom.xml (diff)
The file was modified examples/webapp-example-parent/pom.xml (diff)
The file was modified media/json-jackson/pom.xml (diff)
The file was modified examples/xml-moxy/pom.xml (diff)
The file was modified tests/e2e-testng/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-7/pom.xml (diff)
The file was modified tests/osgi/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-6/pom.xml (diff)
The file was modified examples/sse-item-store-jersey-webapp/pom.xml (diff)
The file was modified incubator/gae-integration/pom.xml (diff)
The file was modified tests/integration/jersey-1883/pom.xml (diff)
The file was modified test-framework/providers/jetty/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-3/pom.xml (diff)
The file was modified tests/integration/reactive-streams/sse/pom.xml (diff)
The file was modified ext/microprofile/mp-rest-client/pom.xml (diff)
The file was modified tests/integration/jersey-2164/pom.xml (diff)
The file was modified tests/e2e-tls/pom.xml (diff)
The file was modified examples/server-sent-events-jaxrs/pom.xml (diff)
The file was modified tests/jmockit/pom.xml (diff)
The file was modified containers/simple-http/pom.xml (diff)
The file was modified connectors/jnh-connector/pom.xml (diff)
The file was modified tests/integration/jersey-1107/pom.xml (diff)
The file was modified tests/e2e-inject/pom.xml (diff)
The file was modified tests/integration/jersey-1667/pom.xml (diff)
The file was modified tests/integration/j-441/war1/pom.xml (diff)
The file was modified examples/managed-beans-webapp/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified tests/performance/test-cases/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-dynamic/pom.xml (diff)
The file was modified tests/integration/microprofile/rest-client-tck/pom.xml (diff)
The file was modified containers/jetty-servlet/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/pom.xml (diff)
The file was modified ext/proxy-client/pom.xml (diff)
The file was modified tests/integration/servlet-3-async/pom.xml (diff)
The file was modified core-common/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-kryo/pom.xml (diff)
The file was modified examples/helloworld/pom.xml (diff)
The file was modified examples/server-async-standalone/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/war/pom.xml (diff)
The file was modified tests/integration/tracing-support/pom.xml (diff)
The file was modified containers/grizzly2-http/pom.xml (diff)
The file was modified ext/rx/rx-client-guava/pom.xml (diff)
The file was modified examples/rest31-sebootstrap-multipart/pom.xml (diff)
The file was modified connectors/jetty-connector/pom.xml (diff)
The file was modified examples/system-properties-example/pom.xml (diff)
The file was modified examples/groovy/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi-rs-inject/pom.xml (diff)
The file was modified examples/bookmark-em/pom.xml (diff)
The file was modified incubator/declarative-linking/pom.xml (diff)
The file was modified tests/e2e-client/pom.xml (diff)
The file was modified examples/server-async-standalone/client/pom.xml (diff)
The file was modified core-server/pom.xml (diff)
The file was modified tests/integration/servlet-request-wrapper-binding-2/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak-client/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x/pom.xml (diff)
The file was modified media/json-binding/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/war2/pom.xml (diff)
The file was modified tests/integration/jersey-2154/pom.xml (diff)
The file was modified examples/https-server-glassfish/pom.xml (diff)
The file was modified security/oauth1-signature/pom.xml (diff)
The file was modified tests/integration/jersey-2167/pom.xml (diff)
The file was modified incubator/open-tracing/pom.xml (diff)
The file was modified media/json-jettison/pom.xml (diff)
The file was modified tests/integration/j-59/war/pom.xml (diff)
The file was modified tests/integration/microprofile/rest-client/pom.xml (diff)
The file was modified tests/integration/j-376/pom.xml (diff)
The file was modified tests/integration/jersey-4949/pom.xml (diff)
The file was modified tests/integration/j-441/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/additional-bundle/pom.xml (diff)
The file was modified inject/pom.xml (diff)
The file was modified test-framework/core/pom.xml (diff)
The file was modified tests/e2e/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-validation/pom.xml (diff)
The file was modified media/jaxb/pom.xml (diff)
The file was modified tests/integration/servlet-3-gf-async/pom.xml (diff)
The file was modified tests/integration/servlet-tests/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-3-chunked-io/pom.xml (diff)
The file was modified tests/integration/servlet-4.0-mvc-1/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/lib/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-transaction/pom.xml (diff)
The file was modified tests/integration/ejb-test-webapp/pom.xml (diff)
The file was modified ext/rx/rx-client-rxjava/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-3-filter/pom.xml (diff)
The file was modified tests/integration/thin-server/pom.xml (diff)
The file was modified test-framework/maven/container-runner-maven-plugin/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-client/pom.xml (diff)
The file was modified test-framework/util/pom.xml (diff)
The file was modified tests/integration/sonar-test/pom.xml (diff)
The file was modified tests/integration/jersey-2137/pom.xml (diff)
The file was modified connectors/netty-connector/pom.xml (diff)
The file was modified examples/https-clientserver-grizzly/pom.xml (diff)
The file was modified tests/integration/servlet-3-params/pom.xml (diff)
The file was modified core-client/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/lib/pom.xml (diff)
The file was modified tests/integration/jersey-1223/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-servlet/pom.xml (diff)
The file was modified tests/e2e-entity/pom.xml (diff)
The file was modified tests/integration/jersey-3670/pom.xml (diff)
The file was modified connectors/jetty-http2-connector/pom.xml (diff)
The file was modified examples/java8-webapp/pom.xml (diff)
The file was modified tests/e2e-inject/cdi2-se/pom.xml (diff)
The file was modified examples/cdi-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-2673/pom.xml (diff)
The file was modified examples/reload/pom.xml (diff)
The file was modified ext/pom.xml (diff)
The file was modified test-framework/pom.xml (diff)
The file was modified examples/helloworld-cdi2-se/pom.xml (diff)
The file was modified tests/integration/jersey-2776/pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified inject/cdi2-se/pom.xml (diff)
The file was modified tests/integration/jersey-2846/pom.xml (diff)
The file was modified tests/integration/reactive-streams/pom.xml (diff)
The file was modified containers/jetty11-http/pom.xml (diff)
The file was modified media/multipart/pom.xml (diff)
The file was modified incubator/kryo/pom.xml (diff)
The file was modified incubator/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/pom.xml (diff)
The file was modified ext/mvc/pom.xml (diff)
The file was modified examples/jaxrs-types-injection/pom.xml (diff)
The file was modified containers/glassfish/jersey-gf-ejb/pom.xml (diff)
The file was modified examples/freemarker-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-2322/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/functional-test/pom.xml (diff)
The file was modified examples/servlet3-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-autodiscovery-2/pom.xml (diff)
The file was modified test-framework/providers/jetty-http2/pom.xml (diff)
The file was modified tests/integration/j-59/ear/pom.xml (diff)
The file was modified test-framework/maven/pom.xml (diff)
The file was modified examples/json-moxy/pom.xml (diff)
The file was modified tests/integration/microprofile/config/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-5/pom.xml (diff)
The file was modified tests/integration/jersey-4542/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/pom.xml (diff)
The file was modified examples/entity-filtering/pom.xml (diff)
The file was modified tests/integration/microprofile/pom.xml (diff)
The file was modified tests/integration/security-digest/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-2/pom.xml (diff)
The file was modified containers/jetty-http/pom.xml (diff)
The file was modified examples/json-processing-webapp/pom.xml (diff)
The file was modified incubator/cdi-inject-weld/pom.xml (diff)
The file was modified security/oauth2-client/pom.xml (diff)
The file was modified docs/pom.xml (diff)
The file was modified tests/integration/async-jersey-filter/pom.xml (diff)
The file was modified ext/micrometer/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-reload/pom.xml (diff)
The file was modified media/sse/pom.xml (diff)
The file was modified tests/integration/jersey-2704/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-4/pom.xml (diff)
The file was modified containers/jersey-servlet/pom.xml (diff)
The file was modified tests/integration/jersey-4003/pom.xml (diff)
The file was modified inject/hk2/pom.xml (diff)
The file was modified tests/integration/j-441/ear/pom.xml (diff)
The file was modified tests/integration/jersey-2160/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-json-jackson/pom.xml (diff)
The file was modified tests/integration/jersey-4697/pom.xml (diff)
The file was modified tests/integration/jersey-2878/pom.xml (diff)
The file was modified connectors/jdk-connector/pom.xml (diff)
The file was modified tests/performance/runners/jersey-grizzly-runner/pom.xml (diff)
The file was modified tests/integration/jersey-780/pom.xml (diff)
The file was modified examples/declarative-linking/pom.xml (diff)
The file was modified tests/integration/jersey-4722/pom.xml (diff)
The file was modified tests/integration/jersey-2654/pom.xml (diff)
The file was modified tests/integration/servlet-3-inflector-1/pom.xml (diff)
The file was modified containers/jetty-http2/pom.xml (diff)
The file was modified tests/integration/jersey-3796/pom.xml (diff)
The file was modified examples/oauth-client-twitter/pom.xml (diff)
The file was modified ext/cdi/jersey-cdi1x-ban-custom-hk2-binding/pom.xml (diff)
The file was modified examples/json-with-padding/pom.xml (diff)
The file was modified media/json-processing/pom.xml (diff)
The file was modified containers/jdk-http/pom.xml (diff)
The file was modified examples/helloworld-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-4099/pom.xml (diff)
The file was modified bundles/apidocs/pom.xml (diff)
The file was modified examples/clipboard-programmatic/pom.xml (diff)
The file was modified bundles/examples/pom.xml (diff)
The file was modified tests/integration/jersey-1928/pom.xml (diff)
The file was modified tests/integration/j-441/war2/pom.xml (diff)
The file was modified examples/jersey-ejb/pom.xml (diff)
The file was modified ext/mvc-bean-validation/pom.xml (diff)
The file was modified examples/managed-client-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-2031/pom.xml (diff)
The file was modified tests/mem-leaks/pom.xml (diff)
The file was modified test-framework/providers/inmemory/pom.xml (diff)
The file was modified tests/integration/cdi-integration/pom.xml (diff)
The file was modified examples/sse-twitter-aggregator/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-8/pom.xml (diff)
The file was modified tests/e2e-core-common/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule/ear/pom.xml (diff)
The file was modified tests/integration/property-check/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-json-moxy/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/war-bundle/pom.xml (diff)
The file was modified security/pom.xml (diff)
The file was modified incubator/html-json/pom.xml (diff)
The file was modified tests/integration/jersey-1960/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-1/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified examples/http-patch/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-init-1/pom.xml (diff)
The file was modified tests/integration/microprofile/config/webapp/pom.xml (diff)
The file was modified tests/integration/jersey-1964/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-3/pom.xml (diff)
The file was modified examples/server-async-standalone/webapp/pom.xml (diff)
The file was modified archetypes/pom.xml (diff)
The file was modified ext/microprofile/mp-config/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-xml-moxy/pom.xml (diff)
The file was modified test-framework/providers/bundle/pom.xml (diff)
The file was modified tests/integration/cdi-integration/gf-cdi-inject/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-filter/pom.xml (diff)
The file was modified ext/entity-filtering/pom.xml (diff)
The file was modified tests/pom.xml (diff)
The file was modified connectors/grizzly-connector/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-inflector-1/pom.xml (diff)
The file was modified ext/mvc-freemarker/pom.xml (diff)
The file was modified tests/integration/jersey-2689/pom.xml (diff)
The file was modified tests/mem-leaks/test-cases/bean-param-leak/pom.xml (diff)
The file was modified ext/mvc-jsp/pom.xml (diff)
The file was modified test-framework/providers/netty/pom.xml (diff)
The file was modified examples/bookstore-webapp/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-name/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-text-plain/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-threadlocals-app/pom.xml (diff)
The file was modified test-framework/providers/jdk-http/pom.xml (diff)
The file was modified tests/integration/servlet-3-sse-1/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-singleton/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-log-check/pom.xml (diff)
The file was modified examples/extended-wadl-webapp/pom.xml (diff)
The file was modified ext/wadl-doclet/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/war2/pom.xml (diff)
The file was modified examples/helloworld-spring-annotations/pom.xml (diff)
The file was modified ext/cdi/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/pom.xml (diff)
The file was modified media/pom.xml (diff)
The file was modified archetypes/jersey-example-java8-webapp/pom.xml (diff)
The file was modified examples/exception-mapping/pom.xml (diff)
The file was modified tests/integration/jersey-2794/pom.xml (diff)
The file was modified tests/integration/jersey-2551/pom.xml (diff)
The file was modified tests/performance/test-cases/param-srl/pom.xml (diff)
The file was modified tests/integration/jackson-14/pom.xml (diff)
The file was modified tests/integration/externalproperties/pom.xml (diff)
The file was modified containers/netty-http/pom.xml (diff)
The file was modified tests/performance/test-cases/filter-global/pom.xml (diff)
The file was modified tests/integration/jersey-2136/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-1/pom.xml (diff)
The file was modified tests/performance/test-cases/mbw-custom-provider/pom.xml (diff)
The file was modified examples/server-async-managed/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-resource-with-at-context/pom.xml (diff)
The file was modified test-framework/maven/custom-enforcer-rules/pom.xml (diff)
The file was modified examples/configured-client/pom.xml (diff)
The file was modified examples/bookmark/pom.xml (diff)
The file was modified ext/mvc-mustache/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multimodule/ear/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-9/pom.xml (diff)
The file was modified examples/multipart-webapp/pom.xml (diff)
The file was modified test-framework/providers/pom.xml (diff)
The file was modified media/moxy/pom.xml (diff)
The file was modified test-framework/providers/external/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-global/pom.xml (diff)
The file was modified examples/pom.xml (diff)
The file was modified examples/managed-client-simple-webapp/pom.xml (diff)
The file was modified examples/json-jackson/pom.xml (diff)
The file was modified examples/json-jettison/pom.xml (diff)
The file was modified tests/stress/pom.xml (diff)
The file was modified bundles/jaxrs-ri/pom.xml (diff)
The file was modified tests/integration/jersey-1604/pom.xml (diff)
The file was modified archetypes/jersey-quickstart-webapp/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/pom.xml (diff)
The file was modified security/oauth1-client/pom.xml (diff)
The file was modified tests/osgi/functional/pom.xml (diff)
The file was modified examples/server-async/pom.xml (diff)
The file was modified tests/integration/asm/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-provider/pom.xml (diff)
The file was modified media/json-gson/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/war1/pom.xml (diff)
The file was modified examples/osgi-helloworld-webapp/alternate-version-bundle/pom.xml (diff)
The file was modified tests/performance/test-cases/proxy-injection/pom.xml (diff)
The file was modified examples/sse-item-store-jaxrs-webapp/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-name/pom.xml (diff)
The file was modified tests/integration/jersey-2255/pom.xml (diff)
The file was modified tests/integration/jaxrs-component-inject/pom.xml (diff)
The file was modified examples/micrometer/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/pom.xml (diff)
The file was modified examples/helloworld-spring-webapp/pom.xml (diff)
The file was modified tests/integration/ejb-multimodule-reload/pom.xml (diff)
The file was modified archetypes/jersey-quickstart-grizzly2/pom.xml (diff)
The file was modified tests/integration/j-59/pom.xml (diff)
The file was modified tests/integration/servlet-request-wrapper-binding/pom.xml (diff)
The file was modified tests/integration/jersey-4321/pom.xml (diff)
The file was modified tests/integration/jersey-4507/pom.xml (diff)
The file was modified tests/performance/runners/pom.xml (diff)
The file was modified tests/integration/jersey-5087/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-2421/pom.xml (diff)
The file was modified tests/integration/jersey-2892/pom.xml (diff)
The file was modified tests/integration/jersey-2335/pom.xml (diff)
The file was modified tests/performance/test-cases/interceptor-dynamic/pom.xml (diff)
The file was modified examples/http-trace/pom.xml (diff)
The file was modified containers/grizzly2-servlet/pom.xml (diff)
The file was modified test-framework/providers/grizzly2/pom.xml (diff)
The file was modified connectors/apache5-connector/pom.xml (diff)
The file was modified tests/performance/benchmarks/pom.xml (diff)
The file was modified containers/jersey-servlet-core/pom.xml (diff)
The file was modified tests/integration/servlet-3-init-8/pom.xml (diff)
The file was modified tests/integration/client-connector-provider/pom.xml (diff)
The file was modified examples/managed-client/pom.xml (diff)
The file was modified tests/mem-leaks/redeployment/redeployment-leaking-test-app/pom.xml (diff)
Commit 28fe57f2182c19aac7e38d1a8f147aab2d566516 by Maxim Nesen
Expect100Continue test fixed for NettyConnector

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified tests/e2e-client/src/test/java/org/glassfish/jersey/tests/e2e/client/nettyconnector/Expect100ContinueTest.java (diff)
The file was modified tests/e2e-client/pom.xml (diff)