Skip to content

Commit 57494de

Browse files
committed
Add POMs for cisd:jhdf5:19.04.0
1 parent f90b3b5 commit 57494de

2 files changed

Lines changed: 113 additions & 0 deletions

File tree

non-maven/base-18.09.0.pom

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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>base</artifactId>
7+
<version>18.09.0</version>
8+
9+
<name>ETH SIS Base Library</name>
10+
<description>Base library supporting JHDF5, among other projects.</description>
11+
<organization>
12+
<name>ETH Zurich Scientific IT Services</name>
13+
<url>https://sis.id.ethz.ch/</url>
14+
</organization>
15+
<licenses>
16+
<license>
17+
<name>Apache 2</name>
18+
<url>https://apache.org/licenses/LICENSE-2.0.txt</url>
19+
<distribution>repo</distribution>
20+
</license>
21+
</licenses>
22+
23+
<scm>
24+
<connection>scm:git:https://sissource.ethz.ch/sispub/base</connection>
25+
<developerConnection>scm:git:https://sissource.ethz.ch/sispub/base</developerConnection>
26+
<tag>18.09.0</tag>
27+
<url>https://sissource.ethz.ch/sispub/base</url>
28+
</scm>
29+
30+
<properties>
31+
<commons-io.version>2.7</commons-io.version>
32+
<commons-lang3.version>3.10</commons-lang3.version>
33+
</properties>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>commons-io</groupId>
38+
<artifactId>commons-io</artifactId>
39+
<version>${commons-io.version}</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.apache.commons</groupId>
43+
<artifactId>commons-lang3</artifactId>
44+
<version>${commons-lang3.version}</version>
45+
</dependency>
46+
</dependencies>
47+
</project>

non-maven/jhdf5-19.04.0.pom

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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

Comments
 (0)