2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-08 03:41:36 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
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>
|
|
|
|
<artifactId>exchange-rate-impl</artifactId>
|
2024-01-02 12:44:18 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>jar</packaging>
|
2024-03-15 17:54:51 -04:00
|
|
|
<name>exchange-rate-impl</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>java-spi</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>exchange-rate-api</artifactId>
|
|
|
|
<version>${exchange-rate-api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>${okhttp.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.json.bind</groupId>
|
|
|
|
<artifactId>javax.json.bind-api</artifactId>
|
|
|
|
<version>${javax.json.bind-api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>yasson</artifactId>
|
|
|
|
<version>${yasson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.json</artifactId>
|
|
|
|
<version>${javax.json.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>${maven-dependency-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/depends</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<exchange-rate-api.version>1.0.0-SNAPSHOT</exchange-rate-api.version>
|
2024-03-04 02:39:28 -05:00
|
|
|
<okhttp.version>5.0.0-alpha.12</okhttp.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<javax.json.bind-api.version>1.0</javax.json.bind-api.version>
|
|
|
|
<yasson.version>1.0.1</yasson.version>
|
|
|
|
<javax.json.version>1.1.2</javax.json.version>
|
|
|
|
<maven-dependency-plugin.version>3.1.0</maven-dependency-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-05-08 03:41:36 -04:00
|
|
|
</project>
|