Skip to content
Aborted

Changes

Summary

  1. Handle equals and hashCode delegating its calls to the InvocationHandler objects (details)
  2. Additional logging for SNI (details)
  3. Better support inheritance in Resource Methods (details)
  4. Add check for deps not in bom.pom (#5291) (details)
  5. Move dependencies of the version agnostic module to the test dependent profile (details)
  6. Redirect GuardianList#toString to original toString (details)
  7. Fix possible NPE in netty client (details)
  8. Update ParamConverters.java (details)
  9. Allow for setting connector provider via properties (#5345) (details)
  10. Parametrize ParamConverters to allow throwing IAE (#5349) (details)
  11. allow for resource methods to return <? extends XYZ> (details)
  12. dependencies update (#5348) (details)
  13. 2.40 (details)
  14. 2.41-SNAPSHOT (details)
  15. cleaning out typos from bom/pom.xml (details)
  16. Formatting fix in the User Guide (details)
  17. Versions adjustment (details)
  18. 3.0.11 (details)
  19. 3.0.99-SNAPSHOT (details)
  20. adjust CI/CD build to use JDK 21 (details)
  21. Save time by not inspecting configuration for property when in PropertiesDelegate (details)
  22. Update war.plugin to work with jdk 21 (details)
  23. store license check report (details)
  24. Versions adjustments (details)
  25. NOTICE versions ajustments (details)
Commit 99042d68a65c7ae30138d06ec75a0c61863a67cf by 24524084+senivam
Handle equals and hashCode delegating its calls to the InvocationHandler objects

Signed-off-by: Steffen Nießing <zuniquex@protonmail.com>
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/ProxyInvocationHandler.java (diff)
Commit f6e849b086a3e057db0042f89279ba8cfb9f4c36 by 15908245+jansupol
Additional logging for SNI

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was removedcore-client/src/main/resources/org/glassfish/jersey/client/internal/jdkconnector/localization.properties
The file was modified core-client/src/main/java/org/glassfish/jersey/client/innate/http/SniConfigurator.java (diff)
The file was modified core-client/src/main/resources/org/glassfish/jersey/client/internal/localization.properties (diff)
The file was modified core-client/src/main/java/org/glassfish/jersey/client/internal/HttpUrlConnector.java (diff)
Commit 2445c46611d82bbccc28fe9087b1818a90ba8f9e by 15908245+jansupol
Better support inheritance in Resource Methods

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedcore-server/src/test/java/org/glassfish/jersey/server/model/ResourceMethodDispatcherInheritanceTest.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher.java (diff)
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/util/ReflectionHelper.java (diff)
Commit d60da249fdd06a5059472c6d9c1d8a757588e710 by noreply
Add check for deps not in bom.pom (#5291)

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified tests/release-test/pom.xml (diff)
The file was modified tests/release-test/src/test/java/org/glassfish/jersey/test/artifacts/DownloadBomPomDependencies.java (diff)
The file was modified tests/release-test/src/test/resources/release-test-pom.xml (diff)
The file was addedtests/release-test/src/test/resources/non-bom-pom-deps.xml
Commit 1d5b4a2d7d981c962e66279490977b3b67f942bf by 24524084+senivam
Move dependencies of the version agnostic module to the test dependent profile

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified tests/version-agnostic/pom.xml (diff)
Commit 531653680538ca9e74bddc29d5d13aa9e07424f7 by 15908245+jansupol
Redirect GuardianList#toString to original toString

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/util/collection/GuardianStringKeyMultivaluedMap.java (diff)
The file was modified tests/e2e/src/test/java/org/glassfish/jersey/tests/e2e/ClientTest.java (diff)
Commit 4bdb30d76c7f30e71e957aa04b3fe6957c4d8394 by 15908245+jansupol
Fix possible NPE in netty client

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified connectors/netty-connector/src/main/java/org/glassfish/jersey/netty/connector/JerseyClientHandler.java (diff)
Commit 08a85c755d63d318e0f2f64cc7442d0042ababcd by 15908245+jansupol
Update ParamConverters.java

See #5260
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverters.java (diff)
Commit 635d16d0f3c10d8e5b2bc2f7388245e1b6ddbadb by noreply
Allow for setting connector provider via properties (#5345)

* Allow for setting connector provider via properties

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified examples/pom.xml (diff)
The file was removedcore-common/src/main/java/org/glassfish/jersey/internal/config/ExternalPropertiesConfigurationFeature.java
The file was addedexamples/configured-client/src/main/java/org/glassfish/jersey/examples/configured/client/App.java
The file was modified docs/src/main/docbook/client.xml (diff)
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientProperties.java (diff)
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/MetaInfOverrideTest.java
The file was modified docs/src/main/docbook/appendix-properties.xml (diff)
The file was modified core-common/src/main/resources/META-INF/services/org.glassfish.jersey.internal.spi.AutoDiscoverable (diff)
The file was addedexamples/configured-client/src/main/java/org/glassfish/jersey/examples/configured/client/HelloWorldResource.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyClientBuilder.java (diff)
The file was addedexamples/configured-client/src/test/java/org/glassfish/jersey/examples/configured/client/HelloWorldTest.java
The file was modified docs/src/main/docbook/jersey.ent (diff)
The file was addedexamples/configured-client/src/main/resources/META-INF/microprofile-config.properties
The file was removedcore-common/src/main/java/org/glassfish/jersey/internal/config/ExternalPropertiesAutoDiscoverable.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/innate/inject/NonInjectionManager.java (diff)
The file was addedexamples/configured-client/pom.xml
The file was addedexamples/configured-client/README.MD
Commit 1f0dbfa40243126fea3bfac6d9f7332450de247d by noreply
Parametrize ParamConverters to allow throwing IAE (#5349)

* Parametrize ParamConverters to allow throwing IAE

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedtests/e2e-core-common/src/test/java/org/glassfish/jersey/tests/e2e/common/internal/ParamConvertersTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/CommonProperties.java (diff)
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/inject/ParamConverterInternalTest.java (diff)
The file was modified docs/src/main/docbook/jersey.ent (diff)
The file was modified docs/src/main/docbook/appendix-properties.xml (diff)
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverters.java (diff)
Commit c42a6a214b9cbee8b4bd9b27e3693215403adadb by 15908245+jansupol
allow for resource methods to return <? extends XYZ>

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedtests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/TypedVariableTest.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/ContainerResponse.java (diff)
The file was modified tests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/CompletionStageTest.java (diff)
Commit 9807a385940a991d426e91e0d94963c5c14709ca by noreply
dependencies update (#5348)

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

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified bom/pom.xml (diff)
Commit f0d2ff21082dbd77a39582e6e4756d2730a7b19d by 24524084+senivam
Formatting fix in the User Guide

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified docs/src/main/docbook/appendix-properties.xml (diff)
Commit 3093a7d2795b0e4d80151ef21cce409c6d422e57 by Maxim Nesen
Versions adjustment

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

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified etc/jenkins/Jenkinsfile_ci_build (diff)
Commit 3819184d92bcf7eadab11f1a7318486d9df33fb8 by 15908245+jansupol
Save time by not inspecting configuration for property when in PropertiesDelegate

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/PropertiesResolver.java (diff)
Commit 6e590ceaf183beedb2ea7d2ecd0b0943f8cf4c5e by 24524084+senivam
Update war.plugin to work with jdk 21

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified archetypes/jersey-example-java8-webapp/src/main/resources/archetype-resources/pom.xml (diff)
The file was modified archetypes/jersey-quickstart-webapp/src/main/resources/archetype-resources/pom.xml (diff)
The file was modified archetypes/jersey-heroku-webapp/src/main/resources/archetype-resources/pom.xml (diff)
The file was modified pom.xml (diff)
Commit 33239c192fd0a7fe607209ddfdf91f3d40e6054a by 15908245+jansupol
store license check report

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified .github/workflows/maven.yml (diff)
Commit 7385e356900db2bd6cdd71ea154c693b5dbef55c by Maxim Nesen
Versions adjustments

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified tests/integration/cdi-integration/gf-cdi-inject/pom.xml (diff)
The file was modified pom.xml (diff)
Commit 44a4258c0bda00e17a559df3fa4a3b125901aad7 by Maxim Nesen
NOTICE versions ajustments

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified NOTICE.md (diff)
The file was modified examples/NOTICE.md (diff)
The file was modified pom.xml (diff)
The file was modified ext/bean-validation/src/main/resources/META-INF/NOTICE.markdown (diff)