Skip to content
Success

Changes

Summary

  1. Issue #3801 Jersey-Bean-Validator-fails-to-inject-Weld-managed-beans (details)
  2. Issue #3801 Do not use CDI with bean validation when it is not available (details)
  3. Weld changed to provided scope. (details)
  4. Weld dependency fixes for tests. (details)
  5. Weld dependency fixes for examples. (details)
  6. Fix example helloworld-cdi2-se (details)
  7. Fix example helloworld-pure-jax-rs ("enter" does not stop the app) (details)
  8. Fix example helloworld-spring-annotations dependency missing (details)
  9. Fix example helloworld-weld dependency missing (details)
  10. Fix example http-patch + dependency added to main pom (details)
  11. Fix example json-jettison (details)
  12. Fix example json-moxy (details)
  13. Fix example server-sent-events-jaxrs (details)
  14. Fix example server-sent-events-jersey (details)
  15. Update copyright (details)
  16. Fix cdi2-se example (details)
  17. Update WELD version (details)
  18. Include dependency into jdk11+ profile (details)
  19. Remove istack dependency from main pom (details)
  20. Add istack version (details)
  21. Some clean up (details)
  22. Fix weld dependency version (details)
  23. Upgraded bean validation to 6.1.2.Final (details)
  24. When no JAX-B RI on CP warn and disable WADL (details)
  25. Copyright fixes. (details)
  26. Activate useSystemProperties into ApacheConnector (#4458) (#4459) (details)
  27. jersey-2031 (#4453) (details)
  28. JerseyInvocation should override toString() (details)
  29. Fix some build warnings and a multithread warning, when building with -T (details)
  30. feat: allow json-jackson to auto-discover modules (details)
  31. Fix Extended Wadl Example OSGi Test for JDK11 (#4430) (details)
  32. Offer the Client (partial) response in ProcessingException. (#4460) (details)
  33. Allow the user for overriding the default Viewable MediaType (details)
  34. Updated NOTICE files and regarding legal information (details)
  35. Set additional security features on SecureSaxParserFactory. (#4472) (details)
  36. ClientDestroyTest fix (#4469) (details)
  37. Run tests with JDK11 in servlet-2.5-mvc-1 (#4471) (details)
  38. Be able to use invocation interceptor for multiple requests within a (details)
  39. Set Bundle-ActivationPolicy on core-common (#4475) (details)
  40. Execute tests in servlet-2.5-mvc-3 (#4473) (details)
  41. Connector to Helidon 2 Web Client (details)
  42. javadoc fix for helidon connector (details)
Commit 4d881e92cce691125bb734b2b445aecfc29696b8 by David Matějček
Issue #3801 Jersey-Bean-Validator-fails-to-inject-Weld-managed-beans
Signed-off-by: David Matejcek <dmatej@seznam.cz>
The file was addedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/CompositeInjectingConstraintValidatorFactory.java
The file was addedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/DestructibleBeanInstance.java
The file was addedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/HibernateInjectingConstraintValidatorFactory.java
The file was modified ext/bean-validation/pom.xml (diff)
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/ValidationBinder.java (diff)
Commit e795abeae95f50c99f5662065e71e1906b2ee957 by David Matějček
Issue #3801 Do not use CDI with bean validation when it is not available
- fixes osgi-functional-tests
Signed-off-by: David Matejcek <dmatej@seznam.cz>
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/ValidationBinder.java (diff)
The file was modified ext/bean-validation/pom.xml (diff)
Commit 20f74cebe8120885f2bec37a11701afcb5915f9e by Tomas Langer
Weld changed to provided scope.
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
The file was modified ext/cdi/jersey-weld2-se/pom.xml (diff)
Commit e9b49333af1e50256b11a71971d5a80ef806b409 by Tomas Langer
Weld dependency fixes for tests.
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified tests/integration/j-376/pom.xml (diff)
The file was modified tests/integration/jersey-3992/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-test-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-4099/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-log-check/pom.xml (diff)
Commit fb797a5fb1e4baf7abd8c83718ddf51679571211 by Tomas Langer
Weld dependency fixes for examples.
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
The file was modified examples/cdi-webapp/pom.xml (diff)
Commit 3ca6161bafa043e85855bcd5a8bec7309f567012 by thibault vallin
Fix example helloworld-cdi2-se
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/HelloWorldResource.java (diff)
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/CounterResource.java (diff)
Commit 64781d34f2f52afb631365ad97344027835a0433 by thibault vallin
Fix example helloworld-pure-jax-rs ("enter" does not stop the app)
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-pure-jax-rs/src/main/java/org/glassfish/jersey/examples/helloworld/jaxrs/App.java (diff)
Commit d21e7e5b7ea5c9d66578131b4e7547c454fe2bfe by thibault vallin
Fix example helloworld-spring-annotations dependency missing
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-spring-annotations/pom.xml (diff)
Commit 0813d24944c7774b7788fc765868d94a7cbdd833 by thibault vallin
Fix example helloworld-weld dependency missing
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified examples/helloworld-weld/README.MD (diff)
Commit 40847c53ca9570eb2c8ab3e713831a7ef16ca7ce by thibault vallin
Fix example http-patch + dependency added to main pom
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/http-patch/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
Commit c44de3c77f1df40f58622c656651a6809a675870 by thibault vallin
Fix example json-jettison
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-jettison/pom.xml (diff)
Commit 2e08462d357c5c0656641facb1a9331f99c390fa by thibault vallin
Fix example json-moxy
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-moxy/pom.xml (diff)
Commit a304d6497e6e644093241093e186e6387c81dd62 by thibault vallin
Fix example server-sent-events-jaxrs
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/server-sent-events-jaxrs/pom.xml (diff)
Commit c9c80d7f6e57464d80d2efa48fc8c796aa9decd3 by thibault vallin
Fix example server-sent-events-jersey
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/server-sent-events-jersey/pom.xml (diff)
Commit 15dbc88ddb311eb7d4d7dd4b18b5ccb3388a9a53 by thibault vallin
Update copyright
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-moxy/pom.xml (diff)
The file was modified examples/helloworld-weld/README.MD (diff)
The file was modified examples/json-jettison/pom.xml (diff)
The file was modified examples/server-sent-events-jersey/pom.xml (diff)
The file was modified examples/helloworld-spring-annotations/pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified examples/http-patch/pom.xml (diff)
The file was modified examples/server-sent-events-jaxrs/pom.xml (diff)
Commit 0af9096128bb6772784136d057806afba824254e by thibault vallin
Fix cdi2-se example
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/CounterResource.java (diff)
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/HelloWorldResource.java (diff)
The file was modified examples/helloworld-cdi2-se/pom.xml (diff)
Commit feaf8ace6c422b8ad044215f179c47751047ad7f by thibault vallin
Update WELD version
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-cdi2-se/pom.xml (diff)
Commit 0611e070bb23ffd0d8838200f9bc5c2ec34e4e99 by thibault vallin
Include dependency into jdk11+ profile
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-jettison/pom.xml (diff)
Commit 6f2fe0aca23c015c386a4de357df7ad7b8a4e6d8 by thibault vallin
Remove istack dependency from main pom
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-moxy/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified examples/http-patch/pom.xml (diff)
Commit 7b0abee1c523eec703d872b47511d24933f815cf by thibault vallin
Add istack version
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/json-jettison/pom.xml (diff)
Commit 449f35f363c5c3651dbb6a10c8fd084b5005ccbc by thibault vallin
Some clean up
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/HelloWorldResource.java (diff)
The file was modified pom.xml (diff)
The file was modified examples/json-jettison/pom.xml (diff)
The file was modified examples/helloworld-cdi2-se/src/main/java/org/glassfish/jersey/examples/helloworld/cdi2se/CounterResource.java (diff)
Commit 5ee342857c5fbc39590d37baaa3bc4b224b63154 by thibault vallin
Fix weld dependency version
Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified examples/helloworld-cdi2-se/pom.xml (diff)
Commit 519879cc1bcd50c0afac0d0dd89916541030414e by 15908245+jansupol
Upgraded bean validation to 6.1.2.Final
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified tests/osgi/functional/src/test/java/org/glassfish/jersey/osgi/test/util/Helper.java (diff)
The file was modified pom.xml (diff)
Commit f9a8431854f87fa652576a4cc32ad7e26c145afe by 15908245+jansupol
When no JAX-B RI on CP warn and disable WADL
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/wadl/WadlFeature.java (diff)
The file was modified examples/osgi-helloworld-webapp/functional-test/src/test/resources/felix.policy (diff)
The file was modified tests/e2e/src/test/java/org/glassfish/jersey/tests/e2e/common/LoggingFeatureTest.java (diff)
The file was modified core-common/src/main/resources/org/glassfish/jersey/internal/localization.properties (diff)
The file was modified core-server/src/main/resources/org/glassfish/jersey/server/internal/localization.properties (diff)
The file was addedtests/e2e/src/test/java/org/glassfish/jersey/tests/e2e/server/wadl/NoJAXBNoWadlTest.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/wadl/internal/WadlApplicationContextImpl.java (diff)
The file was modified core-common/src/main/java/org/glassfish/jersey/message/internal/MessagingBinders.java (diff)
Commit c87136b51ad81e282e4a24038b7085f35572391c by Tomas Langer
Copyright fixes.
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
The file was modified tests/integration/cdi-integration/cdi-log-check/pom.xml (diff)
The file was modified tests/integration/jersey-4099/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-test-webapp/pom.xml (diff)
The file was modified tests/integration/jersey-3992/pom.xml (diff)
The file was modified examples/helloworld-weld/pom.xml (diff)
The file was modified tests/integration/j-376/pom.xml (diff)
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/pom.xml (diff)
Commit ef947586907d30039f49ade4e23e3b34d9b9ddf6 by noreply
Activate useSystemProperties into ApacheConnector (#4458) (#4459)
Signed-off-by: Julien Blondeau <lounagen@gmail.com>
The file was modified connectors/apache-connector/src/main/java/org/glassfish/jersey/apache/connector/ApacheClientProperties.java (diff)
The file was modified connectors/apache-connector/src/main/java/org/glassfish/jersey/apache/connector/ApacheConnector.java (diff)
Commit d500d53000c37d2949536471da76a3a3c43144f0 by noreply
jersey-2031 (#4453)
Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified tests/integration/jersey-2031/src/main/webapp/WEB-INF/web.xml (diff)
The file was modified tests/integration/pom.xml (diff)
The file was modified tests/integration/jersey-2031/pom.xml (diff)
Commit 484e7f639fefb18fa7a776f13daae4e87a1882e5 by 15908245+jansupol
JerseyInvocation should override toString()
Override toString() with a sensible implementation. So if you log a
given JerseyInvocation object at least the request method and URI of the
contained requestContext is printed.
See issue #4270
Signed-off-by: Thomas Meyer <thomas.mey@web.de>
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyInvocation.java (diff)
Commit 577499490122d7697bdce6283c6593066c84f0ce by 15908245+jansupol
Fix some build warnings and a multithread warning, when building with -T
1C
Signed-off-by: Thomas Meyer <thomas.mey@web.de>
The file was modified ext/microprofile/mp-config/pom.xml (diff)
The file was modified bundles/jaxrs-ri/pom.xml (diff)
The file was modified tests/performance/runners/jersey-grizzly-runner/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified tests/jmockit/pom.xml (diff)
Commit 31bd8727e7f9c922f4c4f19c6a77b7c168aa9673 by 15908245+jansupol
feat: allow json-jackson to auto-discover modules
Signed-off-by: Théo Gaillard <theo.gaillard@protonmail.com>
The file was addedmedia/json-jackson/src/test/java/org/glassfish/jersey/jackson/internal/DefaultJacksonJaxbJsonProviderTest.java
The file was modified media/json-jackson/src/main/java/org/glassfish/jersey/jackson/JacksonFeature.java (diff)
The file was addedmedia/json-jackson/src/main/java/org/glassfish/jersey/jackson/internal/DefaultJacksonJaxbJsonProvider.java
The file was addedmedia/json-jackson/src/test/java/org/glassfish/jersey/jackson/internal/model/ServiceTest.java
The file was modified media/json-jackson/src/main/java/org/glassfish/jersey/jackson/internal/FilteringJacksonJaxbJsonProvider.java (diff)
The file was modified media/json-jackson/pom.xml (diff)
Commit 1c68a582ca0a0653eb54cc8e152c9ca0a83d709b by noreply
Fix Extended Wadl Example OSGi Test for JDK11 (#4430)
* Fix Extended Wadl Example OSGi Test for JDK11
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified examples/extended-wadl-webapp/src/test/java/org/glassfish/jersey/examples/extendedwadl/ExtendedWadlWebappOsgiTest.java (diff)
The file was modified examples/extended-wadl-webapp/pom.xml (diff)
Commit 11d6c112a5391aed95ecc58d41058ac2f13e23bc by noreply
Offer the Client (partial) response in ProcessingException. (#4460)
Offer the user (partial) response in ProcessingException.
HttpUrlConnector, when there is a response,
ResponseProcessingException instead of a simple
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified core-client/src/main/java/org/glassfish/jersey/client/internal/HttpUrlConnector.java (diff)
The file was addedtests/integration/jersey-4003/pom.xml
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientRuntime.java (diff)
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyInvocation.java (diff)
The file was modified tests/e2e/src/test/java/org/glassfish/jersey/tests/e2e/MessageBodyExceptionWrappingTest.java (diff)
The file was addedcore-client/src/main/java/org/glassfish/jersey/client/internal/ClientResponseProcessingException.java
The file was addedtests/integration/jersey-4003/src/test/java/org/glassfish/jersey/tests/integration/jersey4003/LostResponseTest.java
The file was modified tests/integration/pom.xml (diff)
Commit da3473b03c64ef745b3e0083bd5e31c54a35198d by 15908245+jansupol
Allow the user for overriding the default Viewable MediaType
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified ext/mvc/src/main/java/org/glassfish/jersey/server/mvc/internal/ViewableMessageBodyWriter.java (diff)
The file was modified tests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/mvc/ExceptionViewProcessorTest.java (diff)
Commit 0e7eb12366c04512647fecc87200a7c0496d6b8d by 15908245+jansupol
Updated NOTICE files and regarding legal information
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was removedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/DestructibleBeanInstance.java
The file was modified pom.xml (diff)
The file was addedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/DestructibleBeanInstance.java
The file was modified core-server/src/main/resources/META-INF/NOTICE.markdown (diff)
The file was removedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/HibernateInjectingConstraintValidatorFactory.java
The file was addedext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/HibernateInjectingConstraintValidatorFactory.java
The file was addedext/bean-validation/src/main/resources/META-INF/NOTICE.markdown
The file was modified NOTICE.md (diff)
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/CompositeInjectingConstraintValidatorFactory.java (diff)
The file was modified media/json-jackson/src/main/resources/META-INF/NOTICE.markdown (diff)
Commit 549fc6888efadb6549b1fde85fb7d2780ad19e9c by noreply
Set additional security features on SecureSaxParserFactory. (#4472)
Provide a way to override
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/SecureSaxParserFactory.java (diff)
The file was addedmedia/jaxb/src/main/java/org/glassfish/jersey/jaxb/PropertySupplier.java
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/TransformerFactoryInjectionProvider.java (diff)
The file was addedmedia/jaxb/src/test/java/org/glassfish/jersey/jaxb/internal/FeatureAndPropertySupplierTest.java
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/XmlInputFactoryInjectionProvider.java (diff)
The file was addedmedia/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/JaxbFeatureUtil.java
The file was modified media/jaxb/src/test/java/org/glassfish/jersey/jaxb/internal/SaxParserFactoryInjectionProviderTest.java (diff)
The file was modified media/jaxb/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified media/jaxb/src/main/resources/org/glassfish/jersey/jaxb/internal/localization.properties (diff)
The file was addedmedia/jaxb/src/main/java/org/glassfish/jersey/jaxb/FeatureSupplier.java
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/SaxParserFactoryInjectionProvider.java (diff)
The file was modified media/jaxb/src/test/java/org/glassfish/jersey/jaxb/internal/JaxbStringReaderProviderTest.java (diff)
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/DocumentBuilderFactoryInjectionProvider.java (diff)
The file was modified tests/e2e-entity/src/test/java/org/glassfish/jersey/tests/e2e/entity/XXETest.java (diff)
Commit 4b5439142ade3d4f2352512186694d2d4c2cd3fd by noreply
ClientDestroyTest fix (#4469)
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified tests/e2e-client/src/test/java/org/glassfish/jersey/tests/e2e/client/ClientDestroyTest.java (diff)
Commit 89df8e33232151e4849b86e721f817dc42c4a527 by noreply
Run tests with JDK11 in servlet-2.5-mvc-1 (#4471)
Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified tests/integration/servlet-2.5-mvc-1/pom.xml (diff)
Commit 951723493c91886e609ce4d025f0cc6fb780dda3 by 15908245+jansupol
Be able to use invocation interceptor for multiple requests within a
singe ClientRuntime
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientFilteringStages.java (diff)
The file was modified core-client/src/test/java/org/glassfish/jersey/client/spi/PostInvocationInterceptorTest.java (diff)
The file was modified core-client/src/main/java/org/glassfish/jersey/client/InvocationInterceptorStages.java (diff)
The file was modified core-client/src/test/java/org/glassfish/jersey/client/spi/PreInvocationInterceptorTest.java (diff)
Commit bd06909623bfe2e5c8d5d7ef66cd3e0ce59f6918 by noreply
Set Bundle-ActivationPolicy on core-common (#4475)
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was modified core-common/pom.xml (diff)
Commit 5b6597acb1a6f3a91547c2e64ec6f0ca5153cf18 by noreply
Execute tests in servlet-2.5-mvc-3 (#4473)
* Execute tests in servlet-2.5-mvc-3
Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified tests/integration/servlet-2.5-mvc-3/pom.xml (diff)
The file was modified tests/integration/servlet-2.5-mvc-3/src/test/java/org/glassfish/jersey/tests/integration/servlet_25_mvc_3/ItemITCase.java (diff)
The file was modified tests/integration/servlet-2.5-mvc-3/src/main/webapp/WEB-INF/web.xml (diff)
Commit e6d06c4b7437612d1a1c4ab30927e57a4448c546 by 15908245+jansupol
Connector to Helidon 2 Web Client
Signed-off-by: Jan Supol <jan.supol@oracle.com>
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/AsyncTest.java
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/BasicHelidonConnectorTest.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/HelidonProperties.java
The file was addedconnectors/helidon-connector/pom.xml
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/LargeDataTest.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/package-info.java
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/FollowRedirectsTest.java
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/TimeoutTest.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/HelidonConnectorProvider.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/HelidonEntity.java
The file was addedconnectors/helidon-connector/src/main/resources/org.glassfish.jersey.helidon.connector/localization.properties
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/ParallelTest.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/HelidonConnector.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/HelidonStructures.java
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/sse/SseTest.java
The file was addedconnectors/helidon-connector/src/main/java/org/glassfish/jersey/helidon/connector/OutputStreamChannel.java
The file was addedconnectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/sse/EventOutputTest.java
The file was modified connectors/pom.xml (diff)
Commit 156b2c884a2d651ea1cffb7b30ff48f80fb92123 by 15908245+jansupol
javadoc fix for helidon connector
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified connectors/helidon-connector/pom.xml (diff)