Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions multipacks-additions/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
repositories {
mavenCentral()
}

dependencies {
implementation project(':multipacks-engine')
}
12 changes: 12 additions & 0 deletions multipacks-additions/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Multipacks Additions
Official Multipacks plugin.

## What is this?
Multipacks Additions is an official Multipacks plugin that adds extra functionalities to Multipacks.

## Loading plugin
Append ``-P=multipacks-additions.jar`` right after ``./multipacks-cli`` in console to load plugin. For example:

```
multipacks-cli -P=multipacks-additions.jar build
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
* Copyright (c) 2022-2023 PhoMC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package multipacks.plugins.additions;

import multipacks.platform.Platform;
import multipacks.plugins.Plugin;

public class MultipacksAdditions extends Plugin {
@Override
public void onInit(Platform platform) {
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"id": "multipacks:additions",
"name": "Multipacks Additions",
"author": "PhoMC",
"main": "multipacks.plugins.additions.MultipacksAdditions"
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ include('multipacks-engine')
include('multipacks-cli')
include('multipacks-spigot')
include('multipacks-sample-plugin')
include('multipacks-additions')