Skip to content
Snippets Groups Projects
Select Git revision
  • c165102f8f5e71fd7698383e539811586595b26e
  • 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

plotting.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.53 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/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>fr.soleil.maven.parent</groupId>
        <artifactId>java-updated-versions</artifactId>
        <version>0-SNAPSHOT</version>
      </parent>
    
      <groupId>fr.soleil.deviceservers</groupId>
      <artifactId>PeaksSearch</artifactId>
      <version>1.0.0</version>
      <packaging>pom</packaging>
    
      <properties>
        <tango.site>Soleil</tango.site>
        <tango.platform>All</tango.platform>
        <tango.family>SoftwareSystem</tango.family>
        <tango.bus>NA</tango.bus>
    
        <maven.build.timestamp.format>yyyy-MM-dd-HHmmss</maven.build.timestamp.format>
        <buildNumber>${maven.build.timestamp}</buildNumber>
      </properties>
    
      <scm>
        <connection>git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/peakssearch.git</connection>
        <developerConnection>git@gitlab.synchrotron-soleil.fr:software-control-system/tango-devices/calculation/peakssearch.git</developerConnection>
        <url>https://gitlab.synchrotron-soleil.fr/software-control-system/tango-devices/calculation/peakssearch</url>
      </scm>
    
      <licenses>
        <license>
          <name>LGPL-3</name>
        </license>
      </licenses>
    
      <organization>
        <name>Synchrotron Soleil</name>
        <url>http://www.synchrotron-soleil.fr</url>
      </organization>
    
      <developers>
        <developer>
          <name>Xavier Elattaoui</name>
          <email>xavier.elattaoui@synchrotron-soleil.fr</email>
          <organization>Synchrotron Soleil</organization>
          <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>developer</role>
          </roles>
        </developer>
      </developers>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
              <execution>
                <id>assembly</id>
                <goals>
                  <goal>single</goal>
                </goals>
                <phase>package</phase>
                <configuration>
                  <finalName>${project.name}-${project.version}</finalName>
                  <appendAssemblyId>false</appendAssemblyId>
                  <descriptors>
                    <descriptor>assembly.xml</descriptor>
                  </descriptors>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </project>