opensimm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.opengamma</groupId> <artifactId>opensimm</artifactId> <version>1.0</version> </dependency>
<?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> <groupId>com.opengamma</groupId> <artifactId>opensimm</artifactId> <packaging>jar</packaging> <name>OpenSIMM</name> <version>1.0</version> <description> Reference implementation of the ISDA-proposed Standard Initial Margin Model (SIMM) for non-cleared derivatives. </description> <url>https://github.com/OpenGamma/OpenSIMM</url> <!-- ==================================================================== --> <issueManagement> <system>GitHub</system> <url>https://github.com/OpenGamma/OpenSIMM/issues</url> </issueManagement> <inceptionYear>2015</inceptionYear> <!-- ==================================================================== --> <developers> <developer> <name>OpenGamma</name> <organization>OpenGamma</organization> <organizationUrl>http://developers.opengamma.com</organizationUrl> <url>https://github.com/jodastephen</url> </developer> </developers> <!-- ==================================================================== --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/OpenGamma/OpenSIMM.git</connection> <developerConnection>scm:git:https://github.com/OpenGamma/OpenSIMM.git</developerConnection> <url>https://github.com/OpenGamma/OpenSIMM</url> </scm> <organization> <name>OpenGamma</name> <url>http://www.opengamma.com</url> </organization> <!-- ==================================================================== --> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> </includes> </resource> <resource> <targetPath>META-INF</targetPath> <directory>${project.basedir}</directory> <includes> <include>LICENSE.txt</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> </resource> </resources> <!-- define build --> <plugins> <!-- add standard entries to jar manifest --> <!-- build jar with main class --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <mainClass>com.opengamma.opensimm.Simm</mainClass> </manifest> </archive> </configuration> </plugin> <!-- generate javadoc jar file when packaging --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <bottom>Copyright 2015-Present by OpenGamma Inc. and individual contributors, released under the Apache License Version 2.0</bottom> </configuration> </plugin> <!-- generate source jar file when packaging --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <attach>false</attach> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> <executions> <execution> <id>make-assembly</id> <phase>deploy</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <!-- Manage plugin versions --> <pluginManagement> <plugins> <!-- Maven build and reporting plugins (alphabetical) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>${maven-changes-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${maven-jxr-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${maven-pmd-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-repository-plugin</artifactId> <version>${maven-repository-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>${maven-toolchains-plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <!-- ==================================================================== --> <prerequisites> <maven>3.0.4</maven> </prerequisites> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8.8</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> <exclusion> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <!-- ==================================================================== --> <distributionManagement> <repository> <id>sonatype-opengamma-staging</id> <name>Sonatype OSS staging repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <layout>default</layout> </repository> <snapshotRepository> <uniqueVersion>false</uniqueVersion> <id>sonatype-opengamma-snapshot</id> <name>Sonatype OSS snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <layout>default</layout> </snapshotRepository> <downloadUrl>http://oss.sonatype.org/content/repositories/opengamma-releases</downloadUrl> </distributionManagement> <!-- ==================================================================== --> <profiles> <profile> <id>repo-sign-artifacts</id> <activation> <property> <name>oss.repo</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>1.8</version> <vendor>oracle</vendor> </jdk> </toolchains> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- ==================================================================== --> <properties> <!-- Plugin version numbers --> <maven-assembly-plugin.version>2.5.3</maven-assembly-plugin.version> <maven-changes-plugin.version>2.11</maven-changes-plugin.version> <maven-checkstyle-plugin.version>2.13</maven-checkstyle-plugin.version> <maven-clean-plugin.version>2.6.1</maven-clean-plugin.version> <maven-compiler-plugin.version>3.2</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-dependency-plugin.version>2.10</maven-dependency-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-jar-plugin.version>2.5</maven-jar-plugin.version> <maven-javadoc-plugin.version>2.10.1</maven-javadoc-plugin.version> <maven-jxr-plugin.version>2.5</maven-jxr-plugin.version> <maven-plugin-plugin.version>3.4</maven-plugin-plugin.version> <maven-pmd-plugin.version>3.4</maven-pmd-plugin.version> <maven-project-info-reports-plugin.version>2.8</maven-project-info-reports-plugin.version> <maven-repository-plugin.version>2.4</maven-repository-plugin.version> <maven-resources-plugin.version>2.7</maven-resources-plugin.version> <maven-site-plugin.version>3.4</maven-site-plugin.version> <maven-source-plugin.version>2.4</maven-source-plugin.version> <maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version> <maven-surefire-report-plugin.version>2.18.1</maven-surefire-report-plugin.version> <maven-toolchains-plugin.version>1.1</maven-toolchains-plugin.version> <!-- Properties for maven-compiler-plugin --> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.fork>true</maven.compiler.fork> <maven.compiler.verbose>true</maven.compiler.verbose> <!-- Properties for maven-javadoc-plugin --> <author>false</author> <notimestamp>true</notimestamp> <!-- Other properties --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> </project>