Skip to content

Commit

Permalink
MATP-834 Collect JARs for Client and Market Data Client during build
Browse files Browse the repository at this point in the history
git-svn-id: https://source.marketcetera.org/root/trunk@16999 501a4a96-914b-0410-8454-f5988a4ca596
  • Loading branch information
colin committed May 20, 2015
1 parent e880169 commit e2b11c7
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
21 changes: 21 additions & 0 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,27 @@
<resolveDependencies>false</resolveDependencies>
</configuration>
</plugin>
<!-- bundle all dependencies for ease of externalization -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/output</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
25 changes: 25 additions & 0 deletions modules/marketdata/marketdata-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,29 @@
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- bundle all dependencies for ease of externalization -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/output</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit e2b11c7

Please sign in to comment.