-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
114 lines (104 loc) · 4.14 KB
/
pom.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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>fr.soleil</groupId>
<artifactId>super-pom-C-CPP</artifactId>
<version>RELEASE</version>
</parent>
<groupId>fr.soleil.lib.Lima.Camera</groupId>
<artifactId>LimaAndor-${aol}-shared-${mode}</artifactId>
<version>1.3.6</version>
<packaging>nar</packaging>
<name>LimaAndor</name>
<description>This module controls the Xpad Detector</description>
<scm>
<connection>scm:git:git://github.com/soleil-ica/Lima-camera-andor.git</connection>
<developerConnection>scm:git:git://github.com/soleil-ica/Lima-camera-andor.git</developerConnection>
<url>https://github.com/soleil-ica/Lima-camera-andor</url>
</scm>
<dependencies>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>LimaCore-${aol}-shared-${mode}</artifactId>
<version>1.3.5</version>
</dependency>
<dependency>
<groupId>com.andor</groupId>
<artifactId>ATMCD-${aol}-shared-${mode}</artifactId>
<version>2.83.3</version>
</dependency>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>NexusCPP-${aol}-static-${mode}</artifactId>
<version>3.0.7-vc9</version>
</dependency>
<dependency>
<groupId>fr.soleil.lib</groupId>
<artifactId>YAT-${aol}-static-${mode}</artifactId>
<version>1.10.1-vc9</version>
</dependency>
<dependency>
<groupId>ncsa.uiuc.edu</groupId>
<artifactId>HDF5-${aol}-shared-release</artifactId>
<version>1.8.13-vc9</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.freehep</groupId>
<artifactId>freehep-nar-plugin</artifactId>
<configuration>
<cpp>
<sourceDirectory>src</sourceDirectory>
<includePaths>
<includePath>include</includePath>
</includePaths>
<!-- define less verbose mode for gcc-->
<options>
<option>-w</option>
</options>
<defines>
<define>LIBANDOR_EXPORTS</define>
<define>WIN32</define>
<define>NDEBUG</define>
<define>_WINDOWS</define>
<define>_USRDLL</define>
<define>_WIN32_WINNT=0x0502</define> <!-- For Windows XP Support -->
</defines>
</cpp>
<libraries>
<library>
<type>shared</type>
</library>
</libraries>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>langlois</id>
<name>langlois</name>
<url>http://controle/</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>manager</role>
</roles>
<timezone>1</timezone>
</developer>
<developer>
<id>noureddine</id>
<name>noureddine</name>
<url>http://controle/</url>
<organization>Synchrotron Soleil</organization>
<organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
</project>