Skip to content
Snippets Groups Projects
Select Git revision
  • 992e8161134e17583812ee0a3be1fa4e134b3c1f
  • main default protected
  • v1.1.6
3 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.31 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>
        <artifactId>super-pom-java</artifactId>
        <groupId>fr.soleil</groupId>
        <version>RELEASE</version>
      </parent>
    
      <groupId>fr.soleil.lib</groupId>
      <artifactId>DockingCore</artifactId>
      <version>0.0.1-SNAPSHOT</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:svn:https://svn.code.sf.net/p/comete/code/trunk/DockingCore</connection>
        <developerConnection>scm:svn:https://svn.code.sf.net/p/comete/code/trunk/DockingCore</developerConnection>
        <url>https://svn.code.sf.net/p/comete/code/trunk/DockingCore</url>
      </scm>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <configuration>
              <encoding>UTF-8</encoding>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <encoding>UTF-8</encoding>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <dependencies>
        <dependency>
          <groupId>org.swinglabs</groupId>
          <artifactId>swingx</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>BasicUtilities</artifactId>
        </dependency>
      </dependencies>
    
    </project>