| 描述: |
JavaCL is an Object-Oriented API that makes the C OpenCL API available to Java in a very natural way.
It hides away the complexity of cross-platform C bindings, has a clean OO design (with generics, Java enums, NIO buffers, fully typed exceptions...), provides high-level features (OpenGL-interop, array reductions) and comes with samples and demos.
For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL.
|
| POM文件内容: |
<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>javacl</artifactId>
<name>JavaCL / BridJ</name>
<url>http://code.google.com/p/javacl/</url>
<packaging>bundle</packaging>
<description>
JavaCL is an Object-Oriented API that makes the C OpenCL API available to Java in a very natural way.
It hides away the complexity of cross-platform C bindings, has a clean OO design (with generics, Java enums, NIO buffers, fully typed exceptions...), provides high-level features (OpenGL-interop, array reductions) and comes with samples and demos.
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>javacl-core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.nativelibs4java</groupId>
<artifactId>maven-javacl-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>full-package</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>${shadedArtifactAttached}</shadedArtifactAttached>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Activator>
com.nativelibs4java.opencl.OSGiBundleActivator
</Bundle-Activator>
<Private-Package>
org.bridj.relocated.*
</Private-Package>
<Import-Package>
org.osgi.framework
</Import-Package>
<Export-Package>
com.nativelibs4java.opencl,
com.nativelibs4java.opencl.library,
com.nativelibs4java.opencl.util,
com.nativelibs4java.opencl.util.fft,
com.nativelibs4java.util,
com.ochafik.util.string,
org.bridj,
org.bridj.ann,
org.bridj.cpp,
org.bridj.cpp.com,
org.bridj.cpp.com.shell,
org.bridj.demangling,
org.bridj.jawt,
org.bridj.objc,
org.bridj.dyncall,
org.bridj.util,
org.bridj.lib.darwin_universal,
org.bridj.lib.linux_x64,
org.bridj.lib.linux_x86,
org.bridj.lib.sunos_x86,
org.bridj.lib.win32,
org.bridj.lib.win64
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
|