Skip to content

Commit

Permalink
Switch to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Programie committed Sep 29, 2023
1 parent d5c8b69 commit 61b5cbd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 14 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,15 @@
name: Build package

on: push

permissions:
contents: write

jobs:
build:
uses: programie/Workflows/.github/workflows/build-minecraft-plugin.yml@main
secrets: inherit
with:
curseforge_id: 406067
modrinth_id: m78oYWqM
game_versions: '>= 1.19'
7 changes: 0 additions & 7 deletions .gitlab-ci.yml

This file was deleted.

10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -2,8 +2,8 @@

A Minecraft Bukkit plugin which sends chat messages from/to [MatterBridge](https://github.com/42wim/matterbridge).

[![pipeline status](https://gitlab.com/Programie/MatterBukkit/badges/master/pipeline.svg)](https://gitlab.com/Programie/MatterBukkit/commits/master)
[![download from GitLab](https://img.shields.io/badge/download-Releases-blue?logo=gitlab)](https://gitlab.com/Programie/MatterBukkit/-/releases)
[![actions status](https://github.com/Programie/MatterBukkit/actions/workflows/build.yml/badge.svg)](https://github.com/Programie/MatterBukkit/actions/workflows/build.yml)
[![download from GitHub](https://img.shields.io/badge/download-Releases-blue?logo=github)](https://github.com/Programie/MatterBukkit/releases/latest)
[![download from Modrinth](https://img.shields.io/badge/download-Modrinth-blue?logo=modrinth)](https://modrinth.com/mod/matterbukkit)
[![download from CurseForge](https://img.shields.io/badge/download-CurseForge-blue?logo=curseforge)](https://www.curseforge.com/minecraft/bukkit-plugins/matterbukkit)
[![view on Website](https://img.shields.io/badge/view-Website-blue)](https://selfcoders.com/projects/matterbukkit)
Expand All @@ -12,9 +12,9 @@ A Minecraft Bukkit plugin which sends chat messages from/to [MatterBridge](https

First, install the plugin onto your Bukkit/Spigot/Paper server, and start it to generate [`config.yml`](https://gitlab.com/Programie/MatterBukkit/-/blob/master/src/main/resources/config.yml). Then, configure it:

- Set [`url`](https://gitlab.com/Programie/MatterBukkit/-/blob/master/src/main/resources/config.yml#L3) to the URL where you're running MatterBridge, with port 4242 or whatever you'd like to use (if you're running it on the same server, you can use `http://localhost:4242`).
- Set [`gateway`](https://gitlab.com/Programie/MatterBukkit/-/blob/master/src/main/resources/config.yml#L6) to the name of your MatterBridge gateway.
- Set a [`token`](https://gitlab.com/Programie/MatterBukkit/-/blob/master/src/main/resources/config.yml#L9) to secure the API. This is optional, but heavily recommended.
- Set [`url`](src/main/resources/config.yml#L3) to the URL where you're running MatterBridge, with port 4242 or whatever you'd like to use (if you're running it on the same server, you can use `http://localhost:4242`).
- Set [`gateway`](src/main/resources/config.yml#L6) to the name of your MatterBridge gateway.
- Set a [`token`](src/main/resources/config.yml#L9) to secure the API. This is optional, but heavily recommended.
- Configure all other settings to your liking.

Add an API protocol and gateway to `matterbridge.toml`. Here is an example:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -15,10 +15,10 @@

<name>MatterBukkit</name>
<description>Send chat messages from/to MatterBridge</description>
<url>https://gitlab.com/Programie/MatterBukkit</url>
<url>https://github.com/Programie/MatterBukkit</url>

<scm>
<developerConnection>scm:git:ssh://git@gitlab.com/Programie/MatterBukkit.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/Programie/MatterBukkit.git</developerConnection>
<tag>HEAD</tag>
</scm>

Expand Down

0 comments on commit 61b5cbd

Please sign in to comment.