Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • release_3_4_5
  • release_3_4_4
  • release_3_3_4
  • release_3_4_3
  • release_3_4_2
  • release_3_4_1
  • release_3_4_0
  • release_3_3_2
  • release_3_3_1
  • release_3_3_0
  • release_3_2_0
  • release_3_1_4
  • release_3_1_3
  • release_3_1_2
  • release_3_1_1
  • release_3_1_0
  • release_3_0_17
  • release_3_0_16
  • release_3_0_15
  • release_3_0_14
21 results

README

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 2.22 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>org.cdma.engine</groupId>
        <artifactId>engines</artifactId>
        <version>3.7.6</version>
      </parent>
    
      <artifactId>hdf</artifactId>
      <name>CDMA Engine HDF</name>
      <description>CDMA Engine: HDF based on JHDF5's API</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>
              <showDeprecation>true</showDeprecation>
              <showWarnings>true</showWarnings>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <dependencies>
        <dependency>
          <groupId>ch.qos.logback</groupId>
          <artifactId>logback-classic</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.cdma</groupId>
          <artifactId>core</artifactId>
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api </artifactId>
        </dependency>
        <dependency>
          <groupId>ncsa.hdf</groupId>
          <artifactId>h5object</artifactId>
          <version>2.10.0</version>
        </dependency>
        <dependency>
          <groupId>ncsa.hdf</groupId>
          <artifactId>hdf5lib</artifactId>
          <version>2.10.0</version>
        </dependency>
        <dependency>
          <groupId>ncsa.hdf</groupId>
          <artifactId>object</artifactId>
          <version>2.10.0</version>
        </dependency>
        <dependency>
          <groupId>fr.soleil.lib</groupId>
          <artifactId>BasicUtilities</artifactId>
        </dependency>
      </dependencies>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
    </project>