vectorz
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.mikera</groupId>
<artifactId>vectorz</artifactId>
<version>0.55.0</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>
<artifactId>vectorz</artifactId>
<version>0.55.0</version>
<name>Vectorz</name>
<description>Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.</description>
<parent>
<groupId>net.mikera</groupId>
<artifactId>mikera-pom</artifactId>
<version>0.6.0</version>
</parent>
<properties>
<gpg.keyname>340395AC</gpg.keyname>
<gpg.useagent>true</gpg.useagent>
</properties>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:mikera/${project.artifactId}.git</connection>
<url>scm:git:git@github.com:mikera/${project.artifactId}.git</url>
<developerConnection>scm:git:git@github.com:mikera/${project.artifactId}.git</developerConnection>
<tag>vectorz-0.55.0</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>us.bpsm</groupId>
<artifactId>edn-java</artifactId>
<version>0.4.6</version>
</dependency>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>0.5-rc1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.mikera</groupId>
<artifactId>randomz</artifactId>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>net.mikera</groupId>
<artifactId>mathz</artifactId>
<version>0.3.0</version>
</dependency>
</dependencies>
</project>