<?xml version="1.0" encoding="UTF-8"?>
<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>com.opengamma.strata</groupId>
<artifactId>strata-parent</artifactId>
<version>2.3.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>strata-report</artifactId>
<packaging>jar</packaging>
<name>Strata-Report</name>
<description>Reporting APIs and tools</description>
<!-- ==================================================================== -->
<build>
<plugins>
<!-- Ensure jar is created even if no code -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<skipIfEmpty>false</skipIfEmpty>
</configuration>
</plugin>
</plugins>
</build>
<!-- ==================================================================== -->
<dependencies>
<!-- OpenGamma -->
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-collect</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-basics</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-data</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-calc</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-product</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-measure</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-market</artifactId>
</dependency>
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-pricer</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.opengamma.strata</groupId>
<artifactId>strata-collect</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<!-- ==================================================================== -->
<properties>
<jpms.module.name>com.opengamma.strata.report</jpms.module.name>
<!-- Locate the root directory of the multi-module build -->
<root.dir>${project.basedir}/../..</root.dir>
<!-- Properties for maven-javadoc-plugin -->
<windowtitle>OpenGamma Strata Pricer</windowtitle>
<doctitle><![CDATA[<h1>OpenGamma Strata Pricer</h1>]]></doctitle>
</properties>
</project>
|