forked from uncomplicate/neanderthal-atlas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom-dep.xml
117 lines (102 loc) · 3.86 KB
/
pom-dep.xml
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
<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>
<groupId>uncomplicate</groupId>
<artifactId>neanderthal-atlas</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>Neanderthal JNI ATLAS Bindings</name>
<description>JNI Bindings for ATLAS BLAS and LAPACK library. Neanderthal needs
to find both JNI and the native jar (or nar) for the specific operating system you use.
</description>
<url>https://github.com/uncomplicate/neanderthal-atlas</url>
<issueManagement>
<url>https://github.com/uncomplicate/neanderthal-atlas/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<scm>
<url>https://github.com/uncomplicate/neanderthal-atlas</url>
</scm>
<developers>
<developer>
<email>[email protected]</email>
<name>Dragan Djuric</name>
<url>https://github.com/blueberry</url>
<id>blueberry</id>
</developer>
</developers>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>native-lib-loader</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
<properties>
<skipTests>true</skipTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>attach-jars</id>
<phase>verify</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
<type>jar</type>
</artifact>
<artifact>
<file>${project.build.directory}/${project.build.finalName}-${os.arch}-${os.name}-gpp-jni.nar</file>
<type>jar</type>
<classifier>${os.arch}-${os.name}-gpp-jni</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>