<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>io.github.openfeign.feign</groupId>
    <artifactId>parent</artifactId>
    <version>11.7</version>
  </parent>
  <groupId>io.github.openfeign.feign</groupId>
  <artifactId>feign-jaxrs</artifactId>
  <version>11.7</version>
  <name>Feign JAX-RS</name>
  <description>Feign JAX-RS</description>
  <properties>
    <main.basedir>${project.basedir}/..</main.basedir>
  </properties>
  <dependencies>
    <dependency>
      <groupId>io.github.openfeign.feign</groupId>
      <artifactId>feign-core</artifactId>
      <version>11.7</version>
    </dependency>
    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>jsr311-api</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>io.github.openfeign.feign</groupId>
      <artifactId>feign-gson</artifactId>
      <version>11.7</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>io.github.openfeign.feign</groupId>
      <artifactId>feign-core</artifactId>
      <version>11.7</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
