Skip to content
Flow Arg edited this page Aug 30, 2023 · 7 revisions

Setup

In this page, there are all the instructions to setup your project to use FlowUpdater.

Introduction

I highly recommend to use a Build Tools like Gradle or Maven. It helps in the management of dependencies and the build compilation of your project. Fast, easy to use and useful. Here is the latest version of FlowUpdater:

version

Installation

These are the instructions for the different build tools.

Gradle

repositories {
    mavenCentral() // Necessary
}

dependencies {
    implementation 'fr.flowarg:flowupdater:VERSION' // needed
}

Maven

<!-- MavenCentral is added by default in Maven. You don't need to add it manually. -->
<dependencies>
    <!-- needed -->
    <dependency>
      <groupId>fr.flowarg</groupId>
      <artifactId>flowupdater</artifactId>
      <version>VERSION</version>
    </dependency>
</dependencies>

Without a build tools

Anyway, if you want to setup a project with FlowUpdater without a build tools, check that:

Get FlowUpdater from GitHub or MavenCentral:

▶️ https://github.com/FlowArg/FlowUpdater/releases/

▶️ https://repo1.maven.org/maven2/fr/flowarg/flowupdater/

These are the required libraries to use FlowUpdater:

▶️ https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar

▶️ https://repo1.maven.org/maven2/fr/flowarg/flowmultitools/1.4.0/flowmultitools-1.4.0.jar

▶️ https://repo1.maven.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar

If you want to use my custom OpenLauncherLib (supports Forge 1.13.+, Fabric and has some fixes):

▶️ https://repo1.maven.org/maven2/fr/flowarg/openlauncherlib/3.2.6/openlauncherlib-3.2.6.jar

Clone this wiki locally