Skip to content
This repository was archived by the owner on Jul 15, 2024. It is now read-only.
/ builds Public archive

Webpage that provides downloads for compiled Github Repositories that use Maven and Java

License

Notifications You must be signed in to change notification settings

TheBusyBiscuit/builds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6cc1b42 Â· Jul 15, 2024
Sep 30, 2023
Dec 30, 2022
Aug 27, 2023
Aug 25, 2021
Jul 23, 2023
Oct 3, 2023
Aug 1, 2023
Sep 15, 2023
Mar 3, 2023
Jan 19, 2021
Apr 17, 2023
Feb 21, 2021
Sep 13, 2023
Jul 7, 2023
Sep 29, 2023
Jul 20, 2023
Oct 11, 2023
May 13, 2023
Sep 29, 2023
Sep 4, 2023
Mar 28, 2023
Jun 15, 2022
Jun 22, 2023
Jan 10, 2022
Oct 9, 2023
Aug 13, 2022
Apr 11, 2022
Sep 9, 2021
Apr 6, 2021
Oct 29, 2022
Jan 17, 2022
Oct 16, 2023
Sep 11, 2023
Mar 19, 2022
May 30, 2021
May 7, 2021
Aug 11, 2023
Jul 31, 2021
Jan 21, 2021
Jun 17, 2019
Jul 15, 2024
Jul 13, 2019
Mar 19, 2022
Jun 13, 2023
Jun 13, 2023
Sep 22, 2019
Jun 27, 2019

Repository files navigation

🧰 TheBusyBiscuit's Maven Builds Server

This is the repository of the backend for my builds-page. The page can be found here: https://thebusybiscuit.github.io/builds/ This kinda serves as a "Continous Integration/Deployment" Service for Maven Projects which utilises static GitHub Pages.

Warning

This project has been discontinued in October 2023.
If you are loooking for a similar service I recommend taking a look at blob-builds by @WalshyDev.
If you are looking for the hosted projects, take a look at the blob-builds website:
https://blob.build/

Status

Maintainability Rating Security Rating Bugs Vulnerabilities Code Smells Coverage

How it works

The code itself is basically just a basic node.js Program.
It reads repositories from 'resources/repos.json' (How to add your own repository) and connects to the GitHub-API.
If you are interested in the specifics, then feel free to keep on reading.

1. Commits

The first step is to retrieve the latest commit from GitHub's API.
It will compare that commit's timestamp to the locally stored repository.
If the remote version is newer or if there isn't even a local version, we are calculating the new build id.
After that it will proceed to step 2.

2. Cloning

After we established that our repository is out of date, this program will git clone said repository.
It will also locate it's pom.xml file and set the version to "DEV - $id (git $commit)".

3. Compiling

This is the easiest step, the program just runs mvn clean package -B to compile our Maven Project.
It will also catch the state (Success / Failure).
If you enabled Sonar-Integration for this project, then it will also run a sonar-scan on the repository.

4. Gathering Resources

Since the page can also display some additional information, the program will now fetch the project's license and tags.
It will also relocate the compiled jar to our main project directory.

5. Preparing the upload

Now the program will update our local builds.json file for the project.
It will add the newly compiled build, set the latest and lastSuccessful version and it's going to tag any builds that match up with our previously fetched tags, with that tag.
Then it will generate a fresh index.html page for the project (from "resources/template.html").
And it will also generate a Status Badge (see "resources/badge.svg").
If we specified a discord webhook, it will also post a message on your discord server.

6. Finishing / Uploading

Now that everything completed, the program will add, commit and push all changed files to this repository.
After it's done, it will clear out any source files that arised during git clone.

How to add your own repository

This repository hosts several of my Maven projects, including Slimefun and a couple of Slimefun Addons developed by the community.
If you want your own project to be added, simply submit a Pull Request to this repository with your desired changes and a description of why you want your project to be added. All you have to do is to modify the resources/repos.json file, go down to the bottom and add your repository as another JSON object.

Guidelines

Repositories on this page must adhere to the following guidelines. If a project violates any of these rules, it will be removed from the site. If you see a project on our site which violates these guidelines, feel free to report it on the Issues Tracker. Note that many of these guidelines are requirements of technical nature.

  1. They must be publicly available on GitHub and Open-Source.
  2. They must have a valid LICENSE file with a permissive Open-Source license (e.g. MIT, Apache or GNU GPL or similar).
  3. They must have a valid pom.xml file.
  4. They are not allowed to force auto-updates on people without providing an option to disable it.

Example

    // ...
    // Replace this with your username, repo and branch you wish to publish. For example: AwesomeUser/CoolAddon:main
    "User/Repo:branch": {
        // Some repositories support the usage of sonar-scanner, custom repositories cannot have this feature though (yet)
        "sonar": {
            "enabled": false
        },
        // What the builds will be prefixed with. "DEV" would make builds like "CoolAddon - DEV 1 (githash)"
        "options": {
            "prefix": "DEV"
        },
        // What your addon supports/depends on. The number key indicates the minium build.
        // You can list any text or even links here.
        "dependencies": {
            "Minecraft Version(s)": {
                "1": "1.13.x, 1.14.x, 1.15.x, 1.16.x"
            },
            "CS-CoreLib Version": {
                "1": "<a class=\"link_info\" href=\"/builds/TheBusyBiscuit/CS-CoreLib/master/#100\">dev #100</a>"
            },
            "Slimefun Version": {
                "1": "<a class=\"link_info\" href=\"/builds/TheBusyBiscuit/Slimefun4/master/#600\">dev #600</a>"
            },
        }
    }
}

Auto-Updater

If you are using CS-CoreLib v2 or Slimefun for your project, you can use our premade Auto-Updater for your project. You can add our Auto-Updater by placing this inside the onEnable() method of your main class which extends JavaPlugin.

if (autoUpdatesEnabled) {
    Updater updater = new GitHubBuildsUpdater(this, this.getFile(), "USER/REPO/BRANCH");
    updater.start();
}

Make sure to add a config option for enabling/disabling auto-updates though!