Skip to content

Commit

Permalink
Bug fixes from master backported to 4.5 (#2528)
Browse files Browse the repository at this point in the history
* [RESTEASY-2625]:Fix @produces(text/event-stream

* [RESTEASY-2610] Upgrade MicroProfile REST Client to 1.4.1

* [RESTEASY-2595] Add getLinks method with a custom class loader

* [RESTEASY-2597] add methods and test to support setting

* [RESTEASY-2300] allow empty Host header for netty adapters

* [RESTEASY-2300] test-cases for empty Host header field

* Remove deps from the BOM that don't exist in the current version

* [RESTEASY-2633] Encode code points that span multiple characters (#2456)

Fixes RESTEASY-2633

* [RESTEASY-2637] Fix issue with Spring Web parameters encoding (#2453)

Fixes: quarkusio/quarkus#10133

* Upgrade to wildfly 20.0.0.Final

* Disable wiremock banner

* [RESTEASY-2639] Bump version.log4j from 2.9.1 to 2.13.3 in /resteasy-dependencies-bom (#2460)

Bumps `version.log4j` from 2.9.1 to 2.13.3.

Updates `log4j-api` from 2.9.1 to 2.13.3

Updates `log4j-core` from 2.9.1 to 2.13.3

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* [RESTEASY-2634] Fix HttpHeaders.getAcceptableLanguages (#2458)

JAX-RS mandates that HttpHeaders.getAcceptableLanguages() returns a
single wildcard locale instance if no acceptable languages are defined.

* [RESTEASY-2642] Add doPrivs to sys prop checks (#2467)

* [RESTEASY-2642] Add doPrivs to sys prop checks

Signed-off-by: Andy McCright <j.andrew.mccright@gmail.com>

* Review comment: only use doPriv if SecMgr is used

Signed-off-by: Andy McCright <j.andrew.mccright@gmail.com>

* [RESTEASY-2645] Upgrade Jackson to 2.11.1

* RESTEASY-2648 Upgrade json-patch to 1.13

* [RESTEASY-2648][RESTEASY-2327] Additional minor fix to modules and removal of exclusion

* [RESTEASY-2649] Upgrade shrinkwrap to 2.2.7 (#2473)

* [RESTEASY-2646]:Fix match cache in  RootNode grows infinitely (#2471)

* [RESTEASY-2646]:Initial fix

* [RESTEASY-2646]:More improvement

* [RESTEASY-2646]:Get match catch config from system property

* Code cleanup

* [RESTEASY-2646]:Without caching match if the ContentType contains parameters

* Test for RootNode cache size limit

* Fix test

Co-authored-by: Rostislav Svoboda <rsvoboda@redhat.com>

* Test for RESTEASY-2633

* [RESTEASY-2659] Performance improvements (#2479)

- Avoid unnecessary use of URI.create - rather do more lazily
- Multivalued maps will 99% of the time have 1 or maybe 2 entries for a key so don't allocate memory for 10
- Avoid unnecessary matcher creation when decoding when a string does not contain % in it - which is the more likely case for URI's to Rest resources

These changes increase throughput by about 2% on a simple Rest service.

Co-authored-by: Paul Carter-Brown <paul.carter-brown@jini.guru>

* RESTEASY-2662 Don't create a context if it does not exist

* [RESTEASY-2666] Upgrade httpclient/httpcore

* [RESTEASY-2670] Ensure immutability and properly rely on builders

* [RESTEASY-2669] Dealt with a few warnings

* [RESTEASY-2668] Remove SseEventOutputProvider

* [RESTEASY-2667] Removing SerializableProvider

* [RESTEASY-2669] Misc cleanup and warning fixes

* [RESTEASY-2669] Further warnings' cleanup in core

* RESTEASY-2674 Escape sign of quotation to see the value of parameter

* [RESTEASY-2661]:MediaTypeMap shared across threads, but cache is not … (#2498)

* [RESTEASY-2661]:MediaTypeMap shared across threads, but cache is not thread-safe

* Update MediaTypeMap.java

Removing comment about volatility.

Co-authored-by: Ron Sigal <rsigal@redhat.com>

* [RESTEASY-2549] Remove resteasy-validator-provider source dependency on Hibernate Validate.

[RESTEASY-2549] Moved NonCDIValidatorFactoryTest to integration-tests-embedded

* Do not use ResteasyProviderFactory.getInstance() in SseEventProvider

* [RESTEASY-2684] Statically set provider factory on ResteasyClientBuilderImpl (#2504)

* [RESTEASY-2684] Statically set provider factory on ResteasyClientBuilderImpl

* [RESTEASY-2684] Added unit test.

* [RESTEASY-2684] Fix new unit test.

Co-authored-by: Ron Sigal <rsigal@redhat.com>

* [RESTEASY-2683] NPE in ApacheHttpClient43Test because cache is null in MediaTypeMap (#2501)

* [RESTEASY-2592] removed profile forward.compatibility and annotation NotForForwardCompatibility

* RESTEASY-2678 - Fix read priority from @priority with @RegisterProvider.

* [RESTEASY-2687] Revisit fix in previous commit and remove ResteasyProviderFactory.getInstance() in other locations as well

* Deprecated unused classes

* [RESTEASY-2592] Restore unintentially disabled testsuites

* Update target containers

* [RESTEASY-2627] Chain thenCompose properly

* [RESTEASY-2689] Fix SseEventOutputImpl wrong CompletionStage composition sequence

* RESTEASY-2678 - Fix test.

* [RESTEASY-2689]:Add a test case

* [RESTEASY-2685] Merge client headers with MP REST Client

* Add test to verify behavior

* Needed to reset beanManager inside the extension for testing

* Build to 4.5.7-SNAPSHOT

Co-authored-by: Jim Ma <ema@redhat.com>
Co-authored-by: Gytis Trikleris <gytis@redhat.com>
Co-authored-by: R Searls <rsearls@redhat.com>
Co-authored-by: Ivo Studensky <istudens@redhat.com>
Co-authored-by: Alexey Loubyansky <olubyans@redhat.com>
Co-authored-by: Stuart Douglas <stuart.w.douglas@gmail.com>
Co-authored-by: Georgios Andrianakis <geoand@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Christoph Böhme <christoph@b3e.net>
Co-authored-by: Andy McCright <j.andrew.mccright@gmail.com>
Co-authored-by: George Gastaldi <gegastaldi@gmail.com>
Co-authored-by: Tomaz Cerar <tomaz.cerar@gmail.com>
Co-authored-by: Rostislav Svoboda <rsvoboda@redhat.com>
Co-authored-by: bcluap <bcluap@gmail.com>
Co-authored-by: Paul Carter-Brown <paul.carter-brown@jini.guru>
Co-authored-by: Ron Sigal <rsigal@redhat.com>
Co-authored-by: Ken Finnigan <ken@kenfinnigan.me>
Co-authored-by: rmartinc <rmartinc@redhat.com>
Co-authored-by: Roberto Cortez <radcortez@yahoo.com>
Co-authored-by: a.koshkin <a.koshkin@tinkoff.ru>
  • Loading branch information
21 people committed Sep 17, 2020
1 parent a4d5bc3 commit e17eddd
Show file tree
Hide file tree
Showing 244 changed files with 1,578 additions and 1,373 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest ]
java: ['1.8', '11']
wildfly-version: ['19.1.0.Final', '20.0.0.Beta1']
wildfly-version: ['19.1.0.Final', '20.0.1.Final']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ language: java
jdk:
- openjdk8
env:
- SERVER_VERSION=19.1.0.Final ELYTRON=true
- SERVER_VERSION=20.0.1.Final ELYTRON=true
jobs:
addons:
hosts:
Expand Down
7 changes: 6 additions & 1 deletion arquillian/RESTEASY-1056-jetty-bv11/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>RESTEASY-1056-jetty-bv11</artifactId>
Expand Down Expand Up @@ -97,6 +97,11 @@
<artifactId>resteasy-validator-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_3.0_spec</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>RESTEASY-1630-jetty-resteasy-servlet-initializer</artifactId>
Expand All @@ -15,15 +15,13 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.shrinkwrap.resolvers>2.2.4</version.shrinkwrap.resolvers>
<version.maven.model>3.2.5</version.maven.model>
</properties>

<dependencies>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-depchain</artifactId>
<version>${version.shrinkwrap.resolvers}</version>
<scope>test</scope>
<type>pom</type>
<exclusions>
Expand Down Expand Up @@ -128,6 +126,11 @@
<artifactId>resteasy-validator-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_3.0_spec</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion arquillian/RESTEASY-736-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>RESTEASY-736-jetty</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion arquillian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>RESTEasy Misc Arquillian-based tests</name>
Expand Down
8 changes: 1 addition & 7 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</parent>

<artifactId>resteasy-jaxrs-dist</artifactId>
Expand Down Expand Up @@ -92,12 +92,6 @@
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/src-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-dist</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</parent>

<artifactId>resteasy-jaxrs-src-dist</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion docbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-reference-guide-${translation}</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>RESTEasy Reference Guide (${translation})</name>
<description/>
Expand Down
2 changes: 1 addition & 1 deletion docbook/reference/en/en-US/master.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<bookinfo>
<title>RESTEasy JAX-RS</title>
<subtitle>RESTFul Web Services for Java</subtitle>
<releaseinfo>4.5.6.Final</releaseinfo>
<releaseinfo>4.5.7-SNAPSHOT</releaseinfo>
</bookinfo>

<toc/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ String rtn = target.resolveTemplate("id", "1").request().get(String.class);
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-cache-core</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]>
</programlisting>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,12 @@ public class MyApplication extends Application
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>
<para>
Expand Down Expand Up @@ -396,7 +396,7 @@ public class MyApplication extends Application
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-initializer</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>
</section>
Expand Down Expand Up @@ -1077,12 +1077,12 @@ public abstract class Application
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>

Expand Down
2 changes: 1 addition & 1 deletion docbook/reference/en/en-US/modules/Json-p.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-p-provider</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>
<para>
Expand Down
2 changes: 1 addition & 1 deletion docbook/reference/en/en-US/modules/Links.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<tr>
<td>org.jboss.resteasy</td>
<td>resteasy-links</td>
<td>4.5.6.Final</td>
<td>4.5.7-SNAPSHOT</td>
</tr>
</tbody>
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public class UndertowTest
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jdk-http</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>

Expand Down Expand Up @@ -168,7 +168,7 @@ public class UndertowTest
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-netty4</artifactId>
<<<<<<< HEAD
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
=======
<version>4.6.0-SNAPSHOT</version>
>>>>>>> upstream/master
Expand Down Expand Up @@ -198,7 +198,7 @@ public class UndertowTest
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-vertx</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>
]]></programlisting>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<programlisting><![CDATA[<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-spring</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>]]></programlisting>
<para>
RESTEasy comes with its own <code>ContextLoaderListener</code> that registers a RESTEasy specific
Expand Down Expand Up @@ -359,7 +359,7 @@ server.deploy(deployment);]]></programlisting>
<programlisting><![CDATA[<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-spring-web</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</dependency>]]></programlisting>
</para>
<para>
Expand Down
22 changes: 21 additions & 1 deletion docbook/reference/en/en-US/modules/Validation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
RESTEasy provides the support for validation mandated by the
<ulink url="http://www.jcp.org/en/jsr/detail?id=339">JAX-RS: Java API for RESTful Web Services 2.1 </ulink>,
given the presence of an implementation of the
<ulink url="http://beanvalidation.org/1.1/spec/">Bean Validation specification</ulink>
<ulink url="https://beanvalidation.org/2.0/spec/">Bean Validation specification</ulink>
such as <ulink url="http://hibernate.org/validator/">Hibernate Validator</ulink>.
</para>

Expand Down Expand Up @@ -473,4 +473,24 @@ public interface GeneralValidatorCDI extends GeneralValidator
The validator in resteasy-validator-provider implements GeneralValidatorCDI.
</para>
</section>

<section>
<title>Validation Implementations</title>

<para>
As mentioned above, RESTEasy validation requires an implementation of the
<ulink url="https://beanvalidation.org/2.0/spec/">Bean Validation specification</ulink>
such as <ulink url="http://hibernate.org/validator/">Hibernate Validator</ulink>. Hibernate
Validator is supplied automatically when RESTEasy is running in the context of WildFly. Otherwise,
it should be made available. For example, in maven

<programlisting>
&lt;dependency&gt;
&lt;groupId&gt;org.hibernate.validator&lt;/groupId&gt;
&lt;artifactId&gt;hibernate-validator/artifactId&gt;
&lt;/dependency&gt;
</programlisting>
</para>
</section>

</chapter>
2 changes: 1 addition & 1 deletion docbook/reference/en/en-US/modules/signature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
<para><programlisting> &lt;dependency&gt;
&lt;groupId&gt;org.jboss.resteasy&lt;/groupId&gt;
&lt;artifactId&gt;resteasy-crypto&lt;/artifactId&gt;
&lt;version&gt;4.5.6.Final&lt;/version&gt;
&lt;version&gt;4.5.7-SNAPSHOT&lt;/version&gt;
&lt;/dependency&gt;

</programlisting></para>
Expand Down
2 changes: 1 addition & 1 deletion docbook/reference/en/en-US/modules/smime.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<para><programlisting> &lt;dependency&gt;
&lt;groupId&gt;org.jboss.resteasy&lt;/groupId&gt;
&lt;artifactId&gt;resteasy-crypto&lt;/artifactId&gt;
&lt;version&gt;4.5.6.Final&lt;/version&gt;
&lt;version&gt;4.5.7-SNAPSHOT&lt;/version&gt;
&lt;/dependency&gt;

</programlisting></para>
Expand Down
8 changes: 4 additions & 4 deletions jboss-modules/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@
</module-def>

<module-def name="com.github.fge.jackson-coreutils">
<maven-resource group="com.github.fge" artifact="jackson-coreutils"/>
<maven-resource group="com.github.fge" artifact="msg-simple"/>
<maven-resource group="com.github.fge" artifact="btf"/>
<maven-resource group="com.github.java-json-tools" artifact="jackson-coreutils"/>
<maven-resource group="com.github.java-json-tools" artifact="msg-simple"/>
<maven-resource group="com.github.java-json-tools" artifact="btf"/>
</module-def>

<module-def name="com.github.fge.json-patch">
<maven-resource group="com.github.fge" artifact="json-patch"/>
<maven-resource group="com.github.java-json-tools" artifact="json-patch"/>
</module-def>

<module-def name="org.jboss.resteasy.resteasy-jaxb-provider">
Expand Down
2 changes: 1 addition & 1 deletion jboss-modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
</parent>

<artifactId>resteasy-jboss-modules</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,5 @@
<module name="com.fasterxml.jackson.core.jackson-annotations"/>
<module name="com.fasterxml.jackson.core.jackson-core"/>
<module name="com.fasterxml.jackson.core.jackson-databind"/>
<module name="com.google.guava"/>
</dependencies>
</module>
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@
<module name="com.fasterxml.jackson.core.jackson-annotations"/>
<module name="com.fasterxml.jackson.core.jackson-core"/>
<module name="com.fasterxml.jackson.core.jackson-databind"/>
<module name="com.google.guava"/>
</dependencies>
</module>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion profiling-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>resteasy-profiling-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion providers/fastinfoset/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.5.6.Final</version>
<version>4.5.7-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>resteasy-fastinfoset-provider</artifactId>
Expand Down

0 comments on commit e17eddd

Please sign in to comment.