|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.nativelibs4java</groupId> |
6 | | - <artifactId>javacl-numerical-benchmark-jna</artifactId> |
7 | | - <name>JavaCL Numerical Benchmark / JNA</name> |
8 | | - <url>http://code.google.com/p/javacl/</url> |
9 | | - <version>1.0-SNAPSHOT</version> |
10 | | - <packaging>jar</packaging> |
11 | | - |
12 | | - <properties> |
13 | | - <scala.version>2.9.1</scala.version> |
14 | | - </properties> |
15 | | - |
16 | | - <repositories> |
17 | | - <repository> |
18 | | - <id>nativelibs4java</id> |
19 | | - <name>nativelibs4java Maven2 Repository</name> |
20 | | - <url>http://nativelibs4java.sourceforge.net/maven</url> |
21 | | - </repository> |
22 | | - </repositories> |
23 | | - |
24 | | - <dependencies> |
25 | | - <dependency> |
26 | | - <groupId>com.nativelibs4java</groupId> |
27 | | - <artifactId>javacl-jna</artifactId> |
28 | | - <!--artifactId>javacl-bridj</artifactId--> |
29 | | - <version>1.0-SNAPSHOT</version> |
30 | | - </dependency> |
31 | | - <dependency> |
32 | | - <groupId>org.apache.commons</groupId> |
33 | | - <artifactId>commons-math</artifactId> |
34 | | - <version>2.2</version> |
35 | | - </dependency> |
36 | | - <dependency> |
37 | | - <groupId>org.scala-lang</groupId> |
38 | | - <artifactId>scala-library</artifactId> |
39 | | - <version>${scala.version}</version> |
40 | | - </dependency> |
41 | | - </dependencies> |
42 | 1 |
|
43 | | - <build> |
44 | | - <plugins> |
45 | | - <plugin> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.nativelibs4java</groupId> |
| 5 | + <artifactId>javacl-numerical-benchmark-jna</artifactId> |
| 6 | + <name>JavaCL Numerical Benchmark / JNA</name> |
| 7 | + <url>http://code.google.com/p/javacl/</url> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <parent> |
| 12 | + <groupId>com.nativelibs4java</groupId> |
| 13 | + <artifactId>nativelibs4java-parent</artifactId> |
| 14 | + <version>1.7-SNAPSHOT</version> |
| 15 | + <relativePath>..</relativePath> |
| 16 | + </parent> |
| 17 | + |
| 18 | + <dependencies> |
| 19 | + <dependency> |
46 | 20 | <groupId>com.nativelibs4java</groupId> |
47 | | - <artifactId>javacl-generator-bridj-jna</artifactId> |
| 21 | + <artifactId>javacl-jna</artifactId> |
48 | 22 | <version>1.0-SNAPSHOT</version> |
49 | | - <!--configuration> |
50 | | - <javaOutputDirectory>${project.build.directory}/../src/main/java</javaOutputDirectory> |
51 | | - </configuration--> |
52 | | - <executions> |
53 | | - <execution> |
54 | | - <phase>generate-sources</phase> |
55 | | - <goals> |
56 | | - <goal>compile</goal> |
57 | | - </goals> |
58 | | - </execution> |
59 | | - </executions> |
60 | | - </plugin> |
61 | | - <plugin> |
62 | | - <groupId>org.apache.maven.plugins</groupId> |
63 | | - <artifactId>maven-compiler-plugin</artifactId> |
64 | | - <version>2.3.2</version> |
65 | | - <configuration> |
66 | | - <source>1.5</source> |
67 | | - <target>1.5</target> |
68 | | - </configuration> |
69 | | - </plugin> |
70 | | - <plugin> |
71 | | - <groupId>org.scala-tools</groupId> |
72 | | - <artifactId>maven-scala-plugin</artifactId> |
73 | | - <executions> |
74 | | - <execution> |
75 | | - <goals> |
76 | | - <goal>compile</goal> |
77 | | - <goal>testCompile</goal> |
78 | | - </goals> |
79 | | - </execution> |
80 | | - </executions> |
81 | | - </plugin> |
82 | | - <plugin> |
83 | | - <groupId>org.apache.maven.plugins</groupId> |
84 | | - <artifactId>maven-shade-plugin</artifactId> |
85 | | - <version>1.4</version> |
86 | | - <executions> |
87 | | - <execution> |
88 | | - <phase>package</phase> |
89 | | - <goals> |
90 | | - <goal>shade</goal> |
91 | | - </goals> |
92 | | - <configuration> |
93 | | - <filters> |
94 | | - <filter> |
95 | | - <artifact>*:*</artifact> |
96 | | - <excludes> |
97 | | - <exclude>META-INF/*.SF</exclude> |
98 | | - <exclude>META-INF/*.DSA</exclude> |
99 | | - <exclude>META-INF/*.RSA</exclude> |
100 | | - <exclude>META-INF/maven/**</exclude> |
101 | | - </excludes> |
102 | | - </filter> |
103 | | - </filters> |
104 | | - </configuration> |
105 | | - </execution> |
106 | | - </executions> |
107 | | - </plugin> |
108 | | - </plugins> |
109 | | - </build> |
110 | | - |
111 | | - <reporting> |
112 | | - <plugins> |
113 | | - <plugin> |
114 | | - <groupId>org.scala-tools</groupId> |
115 | | - <artifactId>maven-scala-plugin</artifactId> |
116 | | - <version>${scala.version}</version> |
117 | | - </plugin> |
118 | | - </plugins> |
119 | | - </reporting> |
120 | | - |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.apache.commons</groupId> |
| 26 | + <artifactId>commons-math</artifactId> |
| 27 | + <version>2.2</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.scala-lang</groupId> |
| 31 | + <artifactId>scala-library</artifactId> |
| 32 | + </dependency> |
| 33 | + </dependencies> |
| 34 | + |
| 35 | + <build> |
| 36 | + <plugins> |
| 37 | + <plugin> |
| 38 | + <groupId>com.nativelibs4java</groupId> |
| 39 | + <artifactId>javacl-generator-bridj-jna</artifactId> |
| 40 | + <version>1.0-SNAPSHOT</version> |
| 41 | + <executions> |
| 42 | + <execution> |
| 43 | + <phase>generate-sources</phase> |
| 44 | + <goals> |
| 45 | + <goal>compile</goal> |
| 46 | + </goals> |
| 47 | + </execution> |
| 48 | + </executions> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.scala-tools</groupId> |
| 52 | + <artifactId>maven-scala-plugin</artifactId> |
| 53 | + </plugin> |
| 54 | + <plugin> |
| 55 | + <groupId>org.apache.maven.plugins</groupId> |
| 56 | + <artifactId>maven-shade-plugin</artifactId> |
| 57 | + </plugin> |
| 58 | + </plugins> |
| 59 | + </build> |
| 60 | + |
| 61 | + <reporting> |
| 62 | + <plugins> |
| 63 | + <plugin> |
| 64 | + <groupId>org.scala-tools</groupId> |
| 65 | + <artifactId>maven-scala-plugin</artifactId> |
| 66 | + </plugin> |
| 67 | + </plugins> |
| 68 | + </reporting> |
| 69 | + |
121 | 70 | </project> |
122 | 71 |
|
123 | 72 |
|
|
0 commit comments