<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.nativelibs4java</groupId>
  <artifactId>opencl4java</artifactId>
  <name>OpenCL4Java / BridJ</name>
  <url>http://code.google.com/p/nativelibs4java/wiki/OpenCL</url>
  <packaging>jar</packaging>
  
  	  <description>
OpenCL4Java is a thin Java wrapper around OpenCL's C API.
It uses JNA as its interop layer library, which means it works on all of the (many) JNA-supported platforms (see http://jna.dev.java.net/).
It is autogenerated by JNAerator (http://jnaerator.googlecode.com/), so updates to newer OpenCL specs are a matter of seconds.

Note that OpenCL4Java is used by JavaCL, an Object-Oriented API that presents OpenCL in a much more practical, powerful and idiomatic way to Java.
For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL.
	</description>

  <parent>
	  <groupId>com.nativelibs4java</groupId>
	  <artifactId>javacl-parent</artifactId>
	  <version>1.0.0-RC4</version>
	  <relativePath>..</relativePath>
  </parent>

  <dependencies>
	
	<dependency>
	  <groupId>com.nativelibs4java</groupId>
	  <artifactId>bridj</artifactId>
	  <!--classifier>c-only</classifier-->
	  <version>0.7.0</version>
	</dependency>
	
  </dependencies>

  <profiles>
    <profile>
      <id>regenerate</id>
      <build>
        <plugins>
            <plugin>
                <groupId>com.nativelibs4java</groupId>
                <artifactId>maven-jnaerator-plugin</artifactId>
                <version>${jnaerator.version}</version>
                <configuration>
                    <javaOutputDirectory>src/main/java</javaOutputDirectory>
                </configuration>
            </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>



