|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>cisd</groupId> |
| 6 | + <artifactId>jhdf5</artifactId> |
| 7 | + <version>19.04.0</version> |
| 8 | + |
| 9 | + <name>JHDF5 (HDF5 for Java)</name> |
| 10 | + <description> |
| 11 | + HDF5 is an efficient, well-documented, non-proprietary binary data format |
| 12 | + and library developed and maintained by the HDF Group. The library provided |
| 13 | + by the HDF Group is written in C and available under a liberal BSD-style |
| 14 | + Open Source software license. It has over 600 API calls and is very powerful |
| 15 | + and configurable, but it is not trivial to use. |
| 16 | + |
| 17 | + JHDF5 is a Java binding for HDF5 focusing on ease-of-use, which was |
| 18 | + developed by CISD and is now maintained by ETH SIS. It is available under |
| 19 | + the Apache License 2.0. The library contains HDF5 1.10 from the HDF Group |
| 20 | + and files created with JHDF5 are fully compatible with HDF 1.10 (or HDF5 1.8 |
| 21 | + if you initialize the library appropriately). |
| 22 | + </description> |
| 23 | + <url>https://wiki-bsse.ethz.ch/display/JHDF5/</url> |
| 24 | + <organization> |
| 25 | + <name>ETH Zurich Scientific IT Services</name> |
| 26 | + <url>https://sis.id.ethz.ch/</url> |
| 27 | + </organization> |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>Apache 2</name> |
| 31 | + <url>https://apache.org/licenses/LICENSE-2.0.txt</url> |
| 32 | + <distribution>repo</distribution> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + |
| 36 | + <scm> |
| 37 | + <connection>scm:git:https://sissource.ethz.ch/sispub/jhdf5</connection> |
| 38 | + <developerConnection>scm:git:https://sissource.ethz.ch/sispub/jhdf5</developerConnection> |
| 39 | + <tag>19.04.0</tag> |
| 40 | + <url>https://sissource.ethz.ch/sispub/jhdf5</url> |
| 41 | + </scm> |
| 42 | + |
| 43 | + <properties> |
| 44 | + <base.version>18.09.0</base.version> |
| 45 | + <commons-io.version>2.7</commons-io.version> |
| 46 | + <commons-lang3.version>3.10</commons-lang3.version> |
| 47 | + </properties> |
| 48 | + |
| 49 | + <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>cisd</groupId> |
| 52 | + <artifactId>base</artifactId> |
| 53 | + <version>${base.version}</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>commons-io</groupId> |
| 57 | + <artifactId>commons-io</artifactId> |
| 58 | + <version>${commons-io.version}</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.apache.commons</groupId> |
| 62 | + <artifactId>commons-lang3</artifactId> |
| 63 | + <version>${commons-lang3.version}</version> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | +</project> |
0 commit comments