Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 837 Bytes

File metadata and controls

34 lines (21 loc) · 837 Bytes

solid-fuse

A FUSE client for accessing Solid Pods

How to build the client

Since this project is built with GraalVM, it is possible to build the project either to run in the JVM or natively.

On the JVM

The POM for this project provides a jvm profile for compiling and optionally executing this profile. To compile a JAR, use the following command:

mvn compile -Pjvm

If you also want to execute the project, use the following:

mvn -Pjvm compile exec:java

Natively

Note: Currently there is an issue with native executable packaging. I am working to resolve this issue.

The POM for this project provides a native packaging profile to build a native executable. Please use the following command:

mvn package -Pnative

It is also encouraged to mvn clean before building.