AuraDevelopmentTeam / InvSync

This plugin synchronizes the player inventory with a database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inventory Sync

Build Status Coverage Report Codacy Badge

This plugin synchronizes the player inventory with a database

Downloads

You can download all builds from either:

Issue Reporting

If you found a bug or even are experiencing a crash please report it so we can fix it. Please check at first if a bug report for the issue already exits. If not just create a new issue and fill out the form.

Please include the following:

  • Minecraft version
  • Inventory Sync version
  • Sponge version/build
  • Versions of any mods/plugins potentially related to the issue
  • Any relevant screenshots are greatly appreciated.
  • For crashes:
    • Steps to reproduce
    • latest.log (the FML log) from the log folder of the server

(When creating a new issue please follow the template)

Feature Requests

If you want a new feature added, go ahead an open a new issue, remove the existing form and describe your feature the best you can. The more details you provide the easier it will be implementing it.
You can also talk to us on Discord.

Developing with our Plugin

So you want to add support or even develop an addon for our plugin then you can easily add it to your development environment! All releases beginning from version 0.0.13-alpha get uploaded to my maven repository. (Replace {version} with the appropriate version!)

Maven

<repositories>
    <repository>
        <id>AuraDevelopmentTeam/id>
        <url>https://maven.aura-dev.team/repository/auradev-releases/</url>
        <!--<url>https://maven.aura-dev.team/repository/auradev-snapshots/</url>-->
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>world.jnc.invsync</groupId>
        <artifactId>InvSync</artifactId>
        <version>{version}</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Gradle

repositories {
    maven {
        name "AuraDevelopmentTeam"
        url "https://maven.aura-dev.team/repository/auradev-releases/"
        // url "https://maven.aura-dev.team/repository/auradev-snapshots/"
    }
}

dependencies {
    provided "world.jnc.invsync:InvSync:{version}"
}

Setting up a Workspace/Compiling from Source

  • Clone: Clone the repository like this: git clone --recursive https://github.com/AuraDevelopmentTeam/InvSync.git
  • IDE-Setup: Run [gradle] in the repository root: ./gradlew installLombok <eclipse|idea>
  • Build: Run [gradle] in the repository root: ./gradlew build. The build will be in build/libs
  • If obscure Gradle issues are found try running ./gradlew cleanCache clean

Development builds

Between each offical release there are several bleeding edge development builds, which you can also use. But be aware that they might contain unfinished features and therefore won't work properly.

You can find the builds here: https://gitlab.aura-dev.team/AuraDev/InvSync/pipelines

On the right is a download symbol, click that a dropdown will open. Select "build". Then you'll download a zip file containing all atrifacts including the plugin jar.

Signing

PGP Signing

All files will be signed with PGP.
The public key to verify it can be found in keys/publicKey.asc. The signatures of the files will also be found in the maven.

Jar Signing

All jars from all official download sources will be signed. The signature will always have a SHA-1 hash of 2238d4a92d81ab407741a2fdb741cebddfeacba6 and you are free to verify it.

License

InvSync is licensed under the GNU General Public License v3.0

Random Quote

There are two ways of constructing a software design; one way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.

-- C. A. R. Hoare

About

This plugin synchronizes the player inventory with a database

License:GNU General Public License v3.0


Languages

Language:Java 98.5%Language:Groovy 1.5%