Skip to content
Snippets Groups Projects
Select Git revision
  • 11af03baafe0c486805d593fd761d8858fc371df
  • master default protected
  • compilation2022apr
  • ISEI_3_5_1
  • VERSION_3_9-alba
  • VERSION_3_9-Indus2
  • Jianfeng
  • VERSION-3_10
  • VERSION-3_9_1
  • VERSION-3_9_alba
  • VERSION-3_9_Indus2
  • VERSION-3_9
  • VERSION-3_8
  • VERSION-3_7
  • ISEI_3_5_1-PATCH_2
  • ISEI_3_5_1-PATCH_1
  • PROD_3_5_1
  • VERSION_3_6prerelease2
  • VERSION_3_6prerelease
  • VERSION-3_5
  • tracy
21 results

dynap_err.plt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.46 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</groupId>
      <artifactId>DockingCore</artifactId>
      <version>1.1.4</version>
      <name>Docking Core</name>
      <description>A project that defines some common abstractions in docking</description>
    
      <developers>
        <developer>
          <id>girardot</id>
          <name>Raphaël GIRARDOT</name>
          <email>raphael.girardot@synchrotron-soleil.fr</email>
          <organization>SOLEIL</organization>
          <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Manager</role>
          </roles>
          <timezone>1</timezone>
        </developer>
        <developer>
          <id>viguier</id>
          <name>Grégory VIGUIER</name>
          <email>gregory.viguier@synchrotron-soleil.fr</email>
          <organization>SOLEIL</organization>
          <organizationUrl>http://www.synchrotron-soleil.fr</organizationUrl>
          <roles>
            <role>Java Developer</role>
          </roles>
          <timezone>1</timezone>
        </developer>
      </developers>
    
      <scm>
        <connection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/libraries/java/dockingcore.git</connection>
        <developerConnection>scm:git:git@gitlab.synchrotron-soleil.fr:software-control-system/libraries/java/dockingcore.git</developerConnection>
        <url>https://gitlab.synchrotron-soleil.fr/software-control-system/libraries/java/dockingcore</url>
      </scm>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <dependencies>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>BasicUtilities</artifactId>
        </dependency>
      </dependencies>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    </project>