Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • v1.3.7
2 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 3.61 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
      xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <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.lib.comete</groupId>
      <artifactId>CDMADataSource</artifactId>
      <version>1.3.7</version>
      <name>CDMADataSource</name>
    
      <developers>
        <developer>
          <id>girardot</id>
          <name>Raphael Girardot</name>
          <email>raphael.girardot@synchrotron-soleil.fr</email>
          <organization>SOLEIL Synchrotron</organization>
          <organizationUrl>https://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Manager</role>
            <role>Java Developer</role>
          </roles>
          <timezone>1</timezone>
        </developer>
      </developers>
    
      <contributors>
        <contributor>
          <name>Katy SAINTIN</name>
          <email>katy.saintin@synchrotron-soleil.fr</email>
          <organization>SOLEIL Synchrotron</organization>
          <organizationUrl>https://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Java Developer</role>
          </roles>
          <timezone>1</timezone>
        </contributor>
        <contributor>
          <name>Gregory VIGUIER</name>
          <email>gregory.viguier@synchrotron-soleil.fr</email>
          <organization>SOLEIL Synchrotron</organization>
          <organizationUrl>https://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Java Developer</role>
          </roles>
          <timezone>1</timezone>
        </contributor>
      </contributors>
    
      <scm>
        <connection>scm:svn:https://svn.code.sf.net/p/comete/code/trunk/CDMADataSource</connection>
        <developerConnection>scm:svn:https://svn.code.sf.net/p/comete/code/trunk/CDMADataSource</developerConnection>
      </scm>
    
      <dependencies>
        <dependency>
          <groupId>ch.qos.logback</groupId>
          <artifactId>logback-classic</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api </artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>DataConnectionManagement</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>utilities</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib.comete</groupId>
          <artifactId>CometeDefinition</artifactId>
        </dependency>
        <dependency>
          <groupId>com.famfamfam</groupId>
          <artifactId>silk</artifactId>
        </dependency>
        <dependency>
          <groupId>org.tango-project</groupId>
          <artifactId>tango-icon-theme</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib.comete</groupId>
          <artifactId>CometeSwing</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib.comete</groupId>
          <artifactId>CometeBox</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.cdma.plugin</groupId>
          <artifactId>nexus-soleil</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>ApplicationUtilities</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
    </project>