Skip to content
Snippets Groups Projects
Select Git revision
  • 5164e9e29850f941fb164c587e1e68da548b2fe9
  • main default protected
  • cea
  • databrowser-split
  • 1.3.13
  • v1.3.12
  • v1.3.11
  • v1.3.10
  • v1.3.9
  • v1.3.8
  • v1.3.7
  • v1.3.6
  • v1.3.1-7920
  • v1.3.0-7615
  • v1.3.0-7521
  • v1.2.0-6800
  • databrowser-1.3.5
  • databrowser-1.3.4
  • databrowser-1.3.3
  • DataBrowser-1.3.2
  • databrowser-1.3.1
  • trunk
  • DataBrowser-before-separation
  • DataBrowser-1.2.1
24 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.61 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>org.cdma.gui.plugin</groupId>
        <artifactId>databrowser-plugins</artifactId>
        <version>1.3.9</version>
      </parent>
    
      <artifactId>cdma-plugin</artifactId>
    
      <name>DataBrowser CDMA Plugin</name>
      <description>CDMA plugin for DataBrowser</description>
    
      <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>
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
      <dependencies>
        <dependency>
          <groupId>ch.qos.logback</groupId>
          <artifactId>logback-classic</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.gui</groupId>
          <artifactId>databrowser-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.gui.plugin</groupId>
          <artifactId>tango-plugin</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib.comete</groupId>
          <artifactId>CDMADataSource</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>CDMABox</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>utilities</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.plugin</groupId>
          <artifactId>nexus-soleil</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.plugin</groupId>
          <artifactId>edf-soleil</artifactId>
        </dependency>
        <dependency>
          <groupId>org.cdma.plugin</groupId>
          <artifactId>mambo-soleil</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.comete.bean</groupId>
          <artifactId>TangoTree</artifactId>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib.comete</groupId>
          <artifactId>CometeSwing</artifactId>
        </dependency>
      </dependencies>
    
    </project>