ojalgo-finance
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ojalgo</groupId> <artifactId>ojalgo-finance</artifactId> <version>2.4.1</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.ojalgo</groupId> <artifactId>ojalgo-finance</artifactId> <version>2.4.1</version> <packaging>jar</packaging> <name>ojAlgo-finance</name> <url>http://ojalgo.org</url> <description>Domain specific (finance) additions to oj! Algorithms</description> <organization> <name>Optimatika</name> <url>http://optimatika.se</url> </organization> <developers> <developer> <id>apete</id> <name>Anders Peterson</name> <email>apete@optimatika.se</email> <organization>Optimatika</organization> <organizationUrl>http://optimatika.se</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT</name> <url>https://github.com/optimatika/ojAlgo-finance/blob/master/LICENSE</url> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <issueManagement> <url>https://github.com/optimatika/ojAlgo-finance/issues</url> <system>GitHub</system> </issueManagement> <scm> <url>https://github.com/optimatika/ojAlgo-finance</url> <connection>https://github.com/optimatika/ojAlgo-finance.git</connection> <developerConnection>git@github.com:optimatika/ojAlgo-finance.git</developerConnection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.org.junit.jupiter>5.8.2</version.org.junit.jupiter> <version.org.openjdk.jmh>1.33</version.org.openjdk.jmh> <version.org.ojalgo>50.0.0</version.org.ojalgo> </properties> <dependencies> <dependency> <groupId>org.ojalgo</groupId> <artifactId>ojalgo</artifactId> <version>${version.org.ojalgo}</version> </dependency> <dependency> <groupId>org.ojalgo</groupId> <artifactId>ojalgo</artifactId> <version>${version.org.ojalgo}</version> <classifier>tests</classifier> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${version.org.junit.jupiter}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${version.org.junit.jupiter}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${version.org.junit.jupiter}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerVersion>1.8</compilerVersion> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <configuration> <failOnError>false</failOnError> <quiet>true</quiet> <serialwarn>false</serialwarn> <doclint>none</doclint> </configuration> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <includes> <include>**/*.java</include> </includes> <excludedGroups>slow,unstable</excludedGroups> </configuration> <dependencies> </dependencies> </plugin> </plugins> </build> </project>