Skip to content
Snippets Groups Projects
Select Git revision
  • f3a609ec64b164cedac0aebd8c3512bae7ce66be
  • main default protected
  • release_1_2_1
  • release_1_2_0
  • release_1_1_19
  • release_1_1_18
  • release_1_1_17
  • release_1_1_16
  • release_1_1_15
  • release_1_1_14
  • release_1_1_13
  • release_1_1_12
  • release_1_1_11
  • release_1_1_10
  • release_1_1_9
  • release_1_1_8
  • release_1_1_7
  • release_1_1_6
  • release_1_1_5
  • release_1_1_4
  • release_1_1_3
  • release_1_1_2
22 results

Win32SocketLecroy.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.32 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</artifactId>
            <version>RELEASE</version>
        </parent>
    
        <groupId>fr.soleil.lib</groupId>
        <artifactId>Interpolator-${aol}-${library}-${mode}</artifactId>
        <version>1.2.13-SNAPSHOT</version>
    
        <packaging>nar</packaging>
        <name>Interpolator</name>
        <description>Interpolator library</description>
    
        <scm>
            <connection>${scm.connection.svn.tango-ds}/Libraries/Interpolator/trunk</connection>
            <developerConnection>${scm.connection.svn.tango-ds}/Libraries/Interpolator/trunk</developerConnection>
            <url>${scm.connection.svn.tango-ds}/Libraries/Interpolator/trunk</url>
        </scm>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.freehep</groupId>
                    <artifactId>freehep-nar-plugin</artifactId>
    
                    <configuration>
                        <cpp>
                            <sourceDirectory>src</sourceDirectory>
                            <includePaths>
                                <includePath>include</includePath>
                            </includePaths>
                        </cpp>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
        <dependencies>
            <dependency>
                <groupId>org.gnu</groupId>
                <artifactId>GSL-${aol}-${library}-release</artifactId>
            </dependency>
            <dependency>
                <groupId>fr.soleil.lib</groupId>
                <artifactId>Utils-${aol}-${library}-${mode}</artifactId>
            </dependency>
        </dependencies>
    	<developers>
        <developer>
          <id>langlois</id>
          <name>Florent Langlois</name>
          <email>langlois@synchrotron-soleil.fr</email>
          <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>