2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-08 07:06:25 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.feign</groupId>
|
|
|
|
<artifactId>feign</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>feign</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-03-28 11:15:16 -04:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-okhttp</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-gson</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-slf4j</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-03-28 11:15:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
<version>${wsdl4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-hc5</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-soap</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
2022-05-08 07:06:25 -04:00
|
|
|
|
2022-03-28 11:15:16 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>jaxb2-maven-plugin</artifactId>
|
|
|
|
<version>2.5.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>xjc</id>
|
|
|
|
<goals>
|
|
|
|
<goal>xjc</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<packageName>com.baeldung.feign.soap</packageName>
|
|
|
|
<sources>
|
|
|
|
<source>src/main/resources/users.xsd</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
|
|
|
<artifactId>maven-jaxb2-plugin</artifactId>
|
|
|
|
<version>0.14.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>feign-soap-stub-generation</id>
|
|
|
|
<goals>
|
|
|
|
<goal>generate</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<schemaDirectory>target/generated-sources/jaxb</schemaDirectory>
|
|
|
|
<schemaIncludes>
|
|
|
|
<include>*.xsd</include>
|
|
|
|
</schemaIncludes>
|
|
|
|
<generatePackage>com.baeldung.feign.soap</generatePackage>
|
|
|
|
<generateDirectory>target/generated-sources/jaxb</generateDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-05-08 07:06:25 -04:00
|
|
|
|
2022-07-15 00:29:54 -04:00
|
|
|
<properties>
|
|
|
|
<feign.version>11.8</feign.version>
|
|
|
|
<wsdl4j.version>1.6.3</wsdl4j.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-05-08 03:39:05 -04:00
|
|
|
</project>
|