This commit is contained in:
eelhazati 2018-05-01 00:45:18 +01:00 committed by pauljervis
parent b559157482
commit e50dab578f
3 changed files with 24 additions and 5 deletions

View File

@ -10,4 +10,7 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
</dependencies>
</project>

View File

@ -16,11 +16,6 @@
<artifactId>exchange-rate-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.baeldung</groupId>
<artifactId>exchange-rate-impl</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

View File

@ -10,6 +10,27 @@
<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>