Skip to content

module support #10

@uhoefel

Description

@uhoefel

Currently I get the following error trying to use both LAPACK and BLAS in my project:

image

The relevant piece from my module-info:

    requires lapack;
    requires arpack.combined.all;
    requires blas;

(ARPACK is necessary for the intW type needed e.g. for dpotf2)

my pom.xml:

<dependency>
  <groupId>dev.ludovic.netlib</groupId>
  <artifactId>lapack</artifactId>
  <version>2.2.1</version>
</dependency>
<dependency>
  <groupId>dev.ludovic.netlib</groupId>
  <artifactId>arpack</artifactId>
  <version>2.2.1</version>
</dependency>
<dependency>
  <groupId>dev.ludovic.netlib</groupId>
  <artifactId>blas</artifactId>
  <version>2.2.1</version>
</dependency>

I think this can be fixed by adding module support, which would also remove the warning coming with the packages at the moment:
image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions