strategy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.marketcetera</groupId>
<artifactId>strategy</artifactId>
<version>3.2.1</version>
</dependency><?xml version="1.0" encoding="UTF-8" ?>
<!--
- Author: colin@marketcetera.com
- Since: 1.0.0
- Version: $Id$
- $License$
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.marketcetera</groupId>
<artifactId>modules</artifactId>
<version>3.2.1</version>
</parent>
<artifactId>strategy</artifactId>
<packaging>jar</packaging>
<name>Strategy Module</name>
<dependencies>
<!-- Compile. -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>marketdata-core</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>client</artifactId>
</dependency>
<dependency>
<groupId>org.apache.bsf</groupId>
<artifactId>com.springsource.org.apache.bsf</artifactId>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.sirocco</groupId>
<artifactId>sirocco-text-table-formatter</artifactId>
</dependency>
<!-- Runtime. -->
<!-- Testing. -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cep-esper</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cep-system</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>marketdata-bogus</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>core</artifactId>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-test</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<disableXmlReport>false</disableXmlReport>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
<argLine>${mvn.test.options}</argLine>
<systemPropertyVariables>
<org.marketcetera.appDir>src/test/sample_data</org.marketcetera.appDir>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>