Configuring Maven project

This page describes how to add Fuzio to a Maven-based project.

Repository 

In order to obtain Fuzio JAR files using Maven you need to add the following code to the repositories section of your pom.xml file:

<repository>
    <id>dev.jiku</id>
    <url>https://jiku.mycloudrepo.io/public/repositories/releases</url>
</repository>

The https://jiku.mycloudrepo.io/public/repositories/releases link is not accessible in a web browser as it’s hosted on Google Cloud’s Artifact Registry.

Dependencies 

Cross-platform 

If your project runs on Windows, macOS, and Linux, please add the following code to the dependencies section of your pom.xml file:

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-cross-platform</artifactId>
    <version>2026.1.0</version>
    <type>pom</type>
</dependency>

Platform-specific 

If you need Fuzio JAR files only for a specific platform, you can use the appropriate dependency as described below.

If your Java application runs only on Windows and macOS platforms, and you do not need Linux dependency, you can include only Windows and macOS dependencies.

Windows 32-bit 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-win32</artifactId>
    <version>2026.1.0</version>
</dependency>

Windows 64-bit 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-win64</artifactId>
    <version>2026.1.0</version>
</dependency>

Windows 64-bit ARM 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-win64-arm</artifactId>
    <version>2026.1.0</version>
</dependency>

macOS 64-bit 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-mac</artifactId>
    <version>2026.1.0</version>
</dependency>

macOS 64-bit ARM 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-mac-arm</artifactId>
    <version>2026.1.0</version>
</dependency>

Linux 64-bit 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-linux64</artifactId>
    <version>2026.1.0</version>
</dependency>

Linux 64-bit ARM 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-linux64-arm</artifactId>
    <version>2026.1.0</version>
</dependency>

GUI toolkit 

If you want to display web content in your Java Swing/JavaFX GUI application, then you need to include one of the following dependencies as well:

Swing 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-swing</artifactId>
    <version>2026.1.0</version>
</dependency>

JavaFX 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-javafx</artifactId>
    <version>2026.1.0</version>
</dependency>

SWT 

<dependency>
    <groupId>tech.fuzio</groupId>
    <artifactId>fuzio-swt</artifactId>
    <version>2026.1.0</version>
</dependency>

Customer Support

QR code to follow us on WeChat

Technical Support

QR code to follow us on WeChat