Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • develop
  • release_1_0_7
  • release_1_0_6
  • release_1_0_5
  • release_1_0_4
  • release_1_0_3
  • release_1_0_2
  • release_1_0_1
9 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.20 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.device</groupId>
            <artifactId>ActuatorSystem</artifactId>
            <version>1.0.8-SNAPSHOT</version>
        </parent>
    
        <groupId>fr.soleil.device.ActuatorSystem</groupId>
        <artifactId>PluginInterfaces-${aol}-shared-${mode}</artifactId>
    
        <packaging>nar</packaging>
        <name>PluginInterfaces</name> <!-- used for the name of executable -->
        <description>ActuatorSystem plugin interface</description>
    
        <dependencies>
            <dependency>
                <groupId>fr.soleil.lib</groupId>
                <artifactId>YAT4Tango-${aol}-${library}-${mode}</artifactId>
            </dependency>		
            <dependency>
                <groupId>fr.soleil.lib</groupId>
                <artifactId>YAT-${aol}-${library}-${mode}</artifactId>
            </dependency> 
        </dependencies>	
    	
        <build>
            <plugins>
                <plugin>
                    <groupId>org.freehep</groupId>
                    <artifactId>freehep-nar-plugin</artifactId>
                    <configuration>
                        <libraries>
                            <library>
                                <type>shared</type>
                            </library>
                        </libraries>
                        <cpp>
                            <sourceDirectory>src</sourceDirectory>
                            <includePaths>
                                <includePath>${basedir}/include</includePath>
                            </includePaths>
                        </cpp>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
       <developers>
           <developer>
               <id>thiam</id>
               <name>thiam</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>
       </developers>
    
    </project>