Skip to content

Commit

Permalink
Add POMs for cisd:jhdf5:19.04.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Feb 20, 2021
1 parent f90b3b5 commit 57494de
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 0 deletions.
47 changes: 47 additions & 0 deletions non-maven/base-18.09.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cisd</groupId>
<artifactId>base</artifactId>
<version>18.09.0</version>

<name>ETH SIS Base Library</name>
<description>Base library supporting JHDF5, among other projects.</description>
<organization>
<name>ETH Zurich Scientific IT Services</name>
<url>https://sis.id.ethz.ch/</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>https://apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:https://sissource.ethz.ch/sispub/base</connection>
<developerConnection>scm:git:https://sissource.ethz.ch/sispub/base</developerConnection>
<tag>18.09.0</tag>
<url>https://sissource.ethz.ch/sispub/base</url>
</scm>

<properties>
<commons-io.version>2.7</commons-io.version>
<commons-lang3.version>3.10</commons-lang3.version>
</properties>

<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>
</project>
66 changes: 66 additions & 0 deletions non-maven/jhdf5-19.04.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cisd</groupId>
<artifactId>jhdf5</artifactId>
<version>19.04.0</version>

<name>JHDF5 (HDF5 for Java)</name>
<description>
HDF5 is an efficient, well-documented, non-proprietary binary data format
and library developed and maintained by the HDF Group. The library provided
by the HDF Group is written in C and available under a liberal BSD-style
Open Source software license. It has over 600 API calls and is very powerful
and configurable, but it is not trivial to use.

JHDF5 is a Java binding for HDF5 focusing on ease-of-use, which was
developed by CISD and is now maintained by ETH SIS. It is available under
the Apache License 2.0. The library contains HDF5 1.10 from the HDF Group
and files created with JHDF5 are fully compatible with HDF 1.10 (or HDF5 1.8
if you initialize the library appropriately).
</description>
<url>https://wiki-bsse.ethz.ch/display/JHDF5/</url>
<organization>
<name>ETH Zurich Scientific IT Services</name>
<url>https://sis.id.ethz.ch/</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>https://apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:https://sissource.ethz.ch/sispub/jhdf5</connection>
<developerConnection>scm:git:https://sissource.ethz.ch/sispub/jhdf5</developerConnection>
<tag>19.04.0</tag>
<url>https://sissource.ethz.ch/sispub/jhdf5</url>
</scm>

<properties>
<base.version>18.09.0</base.version>
<commons-io.version>2.7</commons-io.version>
<commons-lang3.version>3.10</commons-lang3.version>
</properties>

<dependencies>
<dependency>
<groupId>cisd</groupId>
<artifactId>base</artifactId>
<version>${base.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 57494de

Please sign in to comment.