Skip to content
Snippets Groups Projects
Select Git revision
  • a72343e16b07fa291e4c0b14dd289ec6357d3039
  • main default protected
  • develop
  • release_2_8_3
  • release_2_8_2
  • release_2_8_1
  • release_2_8_0
  • release_2_7_1
  • release_2_7_0
  • release_2_6_0
  • release_2_5_29
  • release_2_5_28
  • release_2_5_27
  • release_2_5_26
  • release_2_5_25
  • release_2_5_24
  • release_2_5_23
  • release_2_5_22
  • release_2_5_21
  • release_2_5_20
  • release_2_5_18
  • release_2_5_17
  • release_2_5_16
23 results

TangoGpibLink.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.11 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.gui.salsa</groupId>
        <artifactId>Salsa</artifactId>
        <version>3.8.10</version>
      </parent>
    
      <artifactId>SalsaAPI</artifactId>
    
      <name>Salsa Business API</name>
      <description>The business API for Salsa.</description>
    
    
      <developers>
        <developer>
          <id>saintin</id>
          <name>Katy Saintin</name>
          <email>katy.saintin@synchrotron-soleil.fr</email>
          <organization>Synchrotron Soleil</organization>
          <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Manager</role>
            <role>Java Developer</role>
          </roles>
          <timezone>1</timezone>
        </developer>
      </developers>
    
      <dependencies>
        <!-- net.sf.dozer is problematic, see CI-1220 -->
        <dependency>
          <groupId>com.github.dozermapper</groupId>
          <artifactId>dozer-core</artifactId>
          <version>6.5.0</version>
          <!-- <groupId>net.sf.dozer</groupId>
          <artifactId>dozer</artifactId>
          <version>5.2.2</version>
          <exclusions>
            <exclusion> 
              <groupId>commons-logging</groupId>
              <artifactId>commons-logging</artifactId>
            </exclusion>
          </exclusions> -->
        </dependency>
        <dependency>
          <groupId>fr.soleil.gui.salsa</groupId>
          <artifactId>SalsaEntity</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.gui.salsa</groupId>
          <artifactId>SalsaUtils</artifactId>
        </dependency>
        <!-- <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.0</version>
          <scope>test</scope>
        </dependency> -->
        <!-- <dependency>
          <groupId>dbunit</groupId>
          <artifactId>dbunit</artifactId>
          <version>2.2</version>
          <type>pom</type>
        </dependency> -->
      </dependencies>
    </project>