Select Git revision
-
Raphael GIRARDOT authoredRaphael GIRARDOT authored
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>