forked from nativelibs4java/JavaCL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
126 lines (111 loc) · 3.83 KB
/
pom.xml
File metadata and controls
126 lines (111 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<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-SNAPSHOT</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.5.3</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>