Skip to content

Commit 9d37dd7

Browse files
committed
add blosc dependency from maven
1 parent c5818cb commit 9d37dd7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ jobs:
3838
python -m venv venv_zarrita
3939
if [ "${{ runner.os }}" = "Windows" ]; then venv_zarrita/Scripts/pip install zarrita; else venv_zarrita/bin/pip install zarrita; fi
4040
41-
- name: Download blosc jar
42-
run: |
43-
mkdir -p ../blosc-java/target
44-
curl https://static.webknossos.org/misc/blosc-java-0.1-1.21.4-SNAPSHOT.jar -o ../blosc-java/target/blosc-java-0.1-1.21.4-SNAPSHOT.jar
45-
4641
- name: Download testdata
4742
run: |
4843
mkdir testoutput

pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@
104104
<version>4.13.1</version>
105105
<scope>test</scope>
106106
</dependency>
107+
<dependency>
108+
<groupId>com.scalableminds</groupId>
109+
<artifactId>blosc-java</artifactId>
110+
<version>0.1-1.21.4</version>
111+
</dependency>
112+
107113
</dependencies>
108114

109115
<distributionManagement>

0 commit comments

Comments
 (0)