<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>
<parent>
<groupId>org.jcuda</groupId>
<artifactId>jcuda-parent</artifactId>
<version>0.8.0</version>
<relativePath></relativePath>
</parent>
<artifactId>jcurand</artifactId>
<scm>
<connection>scm:git:git@github.com:jcuda/jcurand.git</connection>
<developerConnection>scm:git:git@github.com:jcuda/jcurand.git</developerConnection>
<url>git@github.com:jcuda/jcurand.git</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jcuda</groupId>
<artifactId>jcuda</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jcuda</groupId>
<artifactId>jcurand-natives</artifactId>
<version>${project.version}</version>
<classifier>${jcuda.os}-${jcuda.arch}</classifier>
</dependency>
</dependencies>
</project>
|