Skip to content
Snippets Groups Projects
Select Git revision
  • 70a317150d17f094a1b567e9ae6ce9a253a89342
  • main default protected
  • release_2_9_5
  • release_2_9_4
  • release_2_9_3
  • release_2_9_2
  • release_2_9_0
  • release_2_8_0
  • release_2_7_1
  • release_2_7_0
  • release_2_6_0
  • release_2_5_2
  • release_2_5_1
  • release_2_5_0
  • release_2_4_3
  • release_2_4_2
  • release_2_4_1
  • release_2_4_0
  • release_2_3_5
  • release_2_3_4
  • release_2_3_3
  • release_2_3_2
22 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 3.59 KiB
    <?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-device</artifactId>
           <version>RELEASE</version>
       </parent>
    
       <groupId>fr.soleil.device</groupId>
       <artifactId>AIControllerV2-${aol}-${mode}</artifactId>
       <version>2.4.3</version>
    
       <packaging>nar</packaging>
       <name>AIControllerV2</name>
       
        <scm>
            <connection>${scm.connection.svn.tango-ds}/DeviceClasses/InputOutput/ADLINK/AIControllerV2/trunk</connection>
            <developerConnection>${scm.connection.svn.tango-ds}/DeviceClasses/InputOutput/ADLINK/AIControllerV2/trunk</developerConnection>
            <url>${scm.connection.svn.tango-ds}/DeviceClasses/InputOutput/ADLINK/AIControllerV2/trunk</url>
        </scm>
    	
       <description>AIControllerV2 Device to interface ADLink digital and analog input boards through the ASL library.</description>
       <properties>
           <D2KDASK_ROOT>${env.D2KDASK_ROOT}</D2KDASK_ROOT>
           <PCISDASK_ROOT>${env.PCISDASK_ROOT}</PCISDASK_ROOT>
       </properties>
       <build>
           <plugins>
    		   <plugin>
    			   <groupId>org.freehep</groupId>
    			   <artifactId>freehep-nar-plugin</artifactId>
    			   <configuration>
    				   <os>Windows</os>
    				   <cpp>
    					   <systemIncludePaths>
    						   <systemIncludePath>${D2KDASK_ROOT}/Include</systemIncludePath>
    						   <systemIncludePath>${PCISDASK_ROOT}/Include</systemIncludePath>
    					   </systemIncludePaths>
                 <defines>
                   <define>_THREAD_SUPPORT</define>
    			   <!--define>__TANGO_EVENTS__</define-->
                 </defines>
               </cpp>
    				   <linker>
    					   <libs>
    						   <lib>
    							   <name>D2k-Dask</name>
    							   <type>shared</type>
    							   <directory>${D2KDASK_ROOT}/Lib</directory>
    						   </lib>
    						   <lib>
    							   <name>PCI-Dask</name>
    							   <type>shared</type>
    							   <directory>${PCISDASK_ROOT}/Lib</directory>
    						   </lib>
    					   </libs>
    				   </linker>
    			   </configuration>
    		   </plugin>
           </plugins>
       </build>
       <dependencies>
          <dependency>
           <groupId>fr.soleil.lib</groupId>
           <artifactId>YAT-${aol}-${library}-${mode}</artifactId>
    	   </dependency>
         <dependency>
            <groupId>fr.soleil.lib</groupId>
            <artifactId>YAT4Tango-${aol}-${library}-${mode}</artifactId>
         </dependency>
         <dependency>
           <groupId>fr.soleil.lib</groupId>
           <artifactId>NexusCPPV2-${aol}-${library}-${mode}</artifactId>
    	   <version>2.3.2</version>
         </dependency>
        <dependency>
           <groupId>fr.soleil.lib</groupId>
           <artifactId>ASL-${aol}-${library}-${mode}</artifactId>
    	   <version>1.4.6</version>
         </dependency>
       </dependencies>
       <developers>
         <developer>
           <id>leclercq</id>
           <name>Nicolas Leclercq</name>
           <email>nicolas.leclercq@synchrotron-soleil.fr</email>
           <organization>Synchrotron Soleil</organization>
           <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
           <roles>
             <role>manager</role>
           </roles>
           <timezone>1</timezone>
         </developer>
         <developer>
           <id>minolli</id>
           <name>minolli</name>
           <url>http://controle/</url>
           <organization>Nexeya</organization>
           <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
           <roles>
             <role>developper</role>
           </roles>
           <timezone>1</timezone>
         </developer>
       </developers>
    </project>