63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>exchange-rate-impl</artifactId>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>java-spi</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-dependency-plugin</artifactId>
 | |
|                 <version>3.1.0</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>
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.baeldung</groupId>
 | |
|             <artifactId>exchange-rate-api</artifactId>
 | |
|             <version>1.0.0-SNAPSHOT</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.squareup.okhttp3</groupId>
 | |
|             <artifactId>okhttp</artifactId>
 | |
|             <version>3.10.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.json.bind</groupId>
 | |
|             <artifactId>javax.json.bind-api</artifactId>
 | |
|             <version>1.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.eclipse</groupId>
 | |
|             <artifactId>yasson</artifactId>
 | |
|             <version>1.0.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.glassfish</groupId>
 | |
|             <artifactId>javax.json</artifactId>
 | |
|             <version>1.1.2</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
| </project>
 |