Merge branch 'master' of https://github.com/MCTPPlugins/ShowAPI into 119-support

This commit is contained in:
SBDeveloper 2022-12-28 21:00:35 +01:00
commit 3425cb1c70
3 changed files with 29 additions and 5 deletions

11
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"

13
README.md Normal file
View file

@ -0,0 +1,13 @@
# ShowAPI
This repository contains the official show plugin of McThemeParks.
This plugin contains all the show functions for the server.
## License
```
Copyright (C) McThemeParks 2022 - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential
Written by Stijn Bannink <stijnbannink23@gmail.com>, October 2020
```

10
pom.xml
View file

@ -30,7 +30,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0-SNAPSHOT</version> <version>3.10.1</version>
<configuration> <configuration>
<release>17</release> <release>17</release>
<compilerArgs> <compilerArgs>
@ -41,7 +41,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.3.1-SNAPSHOT</version> <version>3.4.1</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@ -122,12 +122,12 @@
<dependency> <dependency>
<groupId>com.github.cryptomorin</groupId> <groupId>com.github.cryptomorin</groupId>
<artifactId>XSeries</artifactId> <artifactId>XSeries</artifactId>
<version>9.0.0</version> <version>9.2.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.fierioziy.particlenativeapi</groupId> <groupId>com.github.fierioziy.particlenativeapi</groupId>
<artifactId>ParticleNativeAPI-plugin</artifactId> <artifactId>ParticleNativeAPI-plugin</artifactId>
<version>3.2.1</version> <version>3.3.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -139,7 +139,7 @@
<dependency> <dependency>
<groupId>io.github.skytasul</groupId> <groupId>io.github.skytasul</groupId>
<artifactId>guardianbeam</artifactId> <artifactId>guardianbeam</artifactId>
<version>2.3.0</version> <version>2.3.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>