Skip to content

Commit

Permalink
Upgrade the resteasy-parent to 2.0.4.Final.
Browse files Browse the repository at this point in the history
Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Oct 23, 2023
1 parent 931db08 commit bda2d72
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
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 @@
<parent>
<groupId>dev.resteasy.tools</groupId>
<artifactId>resteasy-parent</artifactId>
<version>2.0.3.Final</version>
<version>2.0.4.Final</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>dev.resteasy.tools</groupId>
<artifactId>resteasy-parent</artifactId>
<version>2.0.3.Final</version>
<version>2.0.4.Final</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion resteasy-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.resteasy.tools</groupId>
<artifactId>resteasy-parent</artifactId>
<version>2.0.3.Final</version>
<version>2.0.4.Final</version>
<relativePath/>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface AsyncClientHttpEngine extends ClientHttpEngine {
*
* @param <T> Result-Type
*/
public interface ResultExtractor<T> {
interface ResultExtractor<T> {
/**
* Extracts a result out of a Response
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public Match(final Object interceptor, final int order) {
public final int order;
}

public interface InterceptorFactory {
interface InterceptorFactory {
Match preMatch();

Match postMatch(@SuppressWarnings("rawtypes") Class declaring, AccessibleObject target);
Expand Down
2 changes: 1 addition & 1 deletion resteasy-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>dev.resteasy.tools</groupId>
<artifactId>resteasy-parent</artifactId>
<version>2.0.3.Final</version>
<version>2.0.4.Final</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public interface MultiValuedParamResourceClient {
PathParamResourceClient pathParam();

@Path("/")
public interface QueryParamResourceClient {
interface QueryParamResourceClient {

@GET
@Path("customConversion_multiValuedParam")
Expand Down Expand Up @@ -82,7 +82,7 @@ public interface QueryParamResourceClient {
}

@Path("/")
public interface HeaderParamResourceClient {
interface HeaderParamResourceClient {

@GET
@Path("customConversion_multiValuedParam")
Expand Down Expand Up @@ -123,7 +123,7 @@ public interface HeaderParamResourceClient {
}

@Path("/")
public interface MatrixParamResourceClient {
interface MatrixParamResourceClient {

@GET
@Path("customConversion_multiValuedParam")
Expand Down Expand Up @@ -164,7 +164,7 @@ public interface MatrixParamResourceClient {
}

@Path("/")
public interface CookieParamResourceClient {
interface CookieParamResourceClient {

@GET
@Path("customConversion_multiValuedCookieParam")
Expand Down Expand Up @@ -206,7 +206,7 @@ public interface CookieParamResourceClient {

@Path("/")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public interface FormParamResourceClient {
interface FormParamResourceClient {

@POST
@Path("customConversion_multiValuedParam")
Expand Down Expand Up @@ -247,7 +247,7 @@ public interface FormParamResourceClient {
}

@Path("/")
public interface PathParamResourceClient {
interface PathParamResourceClient {

@GET
@Path("customConversion_multiValuedPathParam/{path1}/{path2}/{path3}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void shouldCallOnMarshaller() throws JAXBException {

@Retention(RetentionPolicy.RUNTIME)
@Decorator(processor = MarshallerDecorator.Processor.class, target = Marshaller.class)
public static @interface MarshallerDecorator {
public @interface MarshallerDecorator {
class Processor implements DecoratorProcessor<Marshaller, MarshallerDecorator> {
@Override
public Marshaller decorate(Marshaller target, MarshallerDecorator annotation, Class type, Annotation[] annotations,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void testOrder() {

@NameBinding
@Retention(RUNTIME)
public static @interface JaxrsInterceptorRegistryTestNameBinding {
public @interface JaxrsInterceptorRegistryTestNameBinding {
}

@JaxrsInterceptorRegistryTestNameBinding
Expand Down

0 comments on commit bda2d72

Please sign in to comment.