From e8c62fb00577d16c1262f78d5e735fe862f9047a Mon Sep 17 00:00:00 2001 From: Stephane Dallongeville <stephane.dallongeville@pasteur.fr> Date: Wed, 25 May 2022 17:26:00 +0200 Subject: [PATCH] added missing dependency and added transitive extraction --- pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7222b77..684fb3e 100644 --- a/pom.xml +++ b/pom.xml @@ -74,7 +74,7 @@ <includeArtifactIds>javacpp,openblas,javacpp-platform</includeArtifactIds> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <stripVersion>true</stripVersion> - <excludeTransitive>true</excludeTransitive> + <excludeTransitive>false</excludeTransitive> </configuration> </execution> </executions> @@ -106,6 +106,12 @@ <artifactId>javacpp-platform</artifactId> <version>1.5.7</version> </dependency> + <!-- https://mvnrepository.com/artifact/org.bytedeco/openblas-platform --> + <dependency> + <groupId>org.bytedeco</groupId> + <artifactId>openblas-platform</artifactId> + <version>0.3.19-1.5.7</version> + </dependency> </dependencies> <!-- Icy Maven repository (to find parent POM) --> -- GitLab