From 1f6411206bd588e0c39ed3c34481ff8441f23e39 Mon Sep 17 00:00:00 2001 From: 张洋洋 <10611411+yang-yang-z@user.noreply.gitee.com> Date: 星期五, 10 一月 2025 11:37:41 +0800 Subject: [PATCH] [add]h5读取改造 --- pom.xml | 37 +++++++++++++++++++++++++++++++------ 1 files changed, 31 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 3f2fceb..7e38144 100644 --- a/pom.xml +++ b/pom.xml @@ -214,13 +214,38 @@ <artifactId>commons-fileupload</artifactId> <version>1.5</version> </dependency> + + <!-- https://mvnrepository.com/artifact/dev.zarr/jzarr --> + <dependency> + <groupId>dev.zarr</groupId> + <artifactId>jzarr</artifactId> + <version>0.4.2</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jzarr-0.4.2.jar</systemPath> + </dependency> + <!-- https://mvnrepository.com/artifact/edu.ucar/cdm-core --> + <dependency> + <groupId>edu.ucar</groupId> + <artifactId>cdm-core</artifactId> + <version>5.4.1</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/cdm-core-5.4.1.jar</systemPath> + </dependency> + + <!-- https://mvnrepository.com/artifact/org.blosc/jblosc --> + <dependency> + <groupId>org.blosc</groupId> + <artifactId>jblosc</artifactId> + <version>1.0.1.dev</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jblosc-1.0.1.dev.jar</systemPath> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>4.2.2</version> + </dependency> </dependencies> - <repositories> - <repository> - <id>jcenter</id> - <url>https://jcenter.bintray.com/</url> - </repository> - </repositories> <build> <finalName>SimuServer</finalName> <plugins> -- Gitblit v1.9.3