1 |
<?xml version="1.0"?><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"> |
2 |
<parent> |
3 |
<artifactId>global</artifactId> |
4 |
<groupId>org.freehep</groupId> |
5 |
<version>7</version> |
6 |
</parent> |
7 |
<modelVersion>4.0.0</modelVersion> |
8 |
<groupId>org.freehep</groupId> |
9 |
<artifactId>freehep-aidajni</artifactId> |
10 |
<version>3.2.7-SNAPSHOT</version> |
11 |
<packaging>nar</packaging> |
12 |
<name>FreeHEP AIDAJNI</name> |
13 |
<description>FreeHEP JNI Adapter for AIDA</description> |
14 |
<build> |
15 |
<plugins> |
16 |
<plugin> |
17 |
<groupId>org.freehep</groupId> |
18 |
<artifactId>freehep-nar-plugin</artifactId> |
19 |
<version>2.0-alpha-9</version> |
20 |
<configuration> |
21 |
<cpp> |
22 |
<defines> |
23 |
<define>AID_EXCEPTION=bool</define> |
24 |
</defines> |
25 |
</cpp> |
26 |
<libraries> |
27 |
<library> |
28 |
<type>static</type> |
29 |
</library> |
30 |
</libraries> |
31 |
</configuration> |
32 |
</plugin> |
33 |
<plugin> |
34 |
<artifactId>maven-surefire-plugin</artifactId> |
35 |
<configuration> |
36 |
<skip>true</skip> |
37 |
</configuration> |
38 |
</plugin> |
39 |
</plugins> |
40 |
</build> |
41 |
<repositories> |
42 |
<repository> |
43 |
<id>freehep-maven</id> |
44 |
<name>Maven FreeHEP</name> |
45 |
<url>http://java.freehep.org/maven2</url> |
46 |
</repository> |
47 |
</repositories> |
48 |
<dependencies> |
49 |
<dependency> |
50 |
<groupId>junit</groupId> |
51 |
<artifactId>junit</artifactId> |
52 |
<version>3.8.2</version> |
53 |
<scope>test</scope> |
54 |
</dependency> |
55 |
<dependency> |
56 |
<groupId>hep.aida</groupId> |
57 |
<artifactId>aida</artifactId> |
58 |
<version>3.2.1-2-SNAPSHOT</version> |
59 |
</dependency> |
60 |
</dependencies> |
61 |
</project> |