Skip to content
Snippets Groups Projects
Select Git revision
  • 82dbcc296973cfd26a38b1411358da8240b8e72c
  • stable default protected
  • feature-particle-in-cell
  • feature-quad_wakes_LongRangeResistiveWall
  • prepare-0.9.0
  • Resisitve_wall_eff_radius_yokoya
  • develop protected
  • feature-iqdamper0
  • feature-feedback-IQ-damper0
  • feature-read_wakis
  • use-one-bin
  • RF-FBv0.6
  • RF-FBv0.5
  • faster_pytorch
  • RF-FB
  • util
  • RFBucket
  • Long-range_wakepotential
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4
  • 0.3
  • 0.2
  • 0.1
26 results

synchrotron.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.99 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>BPMLibera-${aol}-${mode}</artifactId>
        <version>1.3.1</version>
    
        <packaging>nar</packaging>
        <name>BPMLibera</name> <!-- use for the name of executable -->
        <description>BPMLibera Tango Device</description>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.freehep</groupId>
                    <artifactId>freehep-nar-plugin</artifactId>
                    <configuration>
                        <os>Linux</os>
                        <cpp>
                            <excludes>
                                <exclude>**/*Arm*</exclude>
                                <exclude>**/*LiberaEvents*</exclude>
                                <exclude>**/ma/*</exclude>
                            </excludes>
                            <defines>
                                <define>EBPP</define>
                            </defines>
                            <options>
                                <option>-Wno-uninitialized</option>
    			                      <option>-Wno-unused-parameter</option>
    			                      <option>-Wno-unused-variable</option>
                            </options>
                        </cpp>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    
        <dependencies>
            <dependency>
                <groupId>si.i-tech.libera</groupId>
                <artifactId>CSPI-i386-Linux-gcc-static-release</artifactId>
            </dependency>
            <dependency>
                <groupId>si.i-tech.libera</groupId>
                <artifactId>Drivers-i386-Linux-gcc-static-release</artifactId>
            </dependency>
            <dependency>
                <groupId>si.i-tech.libera</groupId>
                <artifactId>Client-i386-Linux-gcc-static-release</artifactId>
            </dependency>
        </dependencies>
    
        <scm>
            <connection>${scm.connection.svn.tango-ds}/DeviceClasses/BeamDiagnostics/i-tech-brillance/trunk/</connection>
            <developerConnection>${scm.connection.svn.tango-ds}/DeviceClasses/BeamDiagnostics/i-tech-brillance/trunk/</developerConnection>
            <url>${scm.connection.svn.tango-ds}/DeviceClasses/BeamDiagnostics/i-tech-brillance/trunk/</url>
        </scm>
    
        <developers>
            <developer>
                <id>leclercq</id>
                <name>leclercq</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>