-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#patch 1.20.2 and experimental kits (#57)
* added default pom for maven usage * Bump version from 2.0.1 to 2.0.1-SNAPSHOT0 * Bump version from 2.0.1-SNAPSHOT0 to 2.0.1-SNAPSHOT1 * Fix block breakage on bridge (#51) * Update ArenaEvents.java * Fix for a false, as my project ain't indexing. * Cleanup code * Potential resolve for block break sounds. * Bump version from 2.0.1-SNAPSHOT1 to 2.0.1-SNAPSHOT2 * Update ArenaEvents.java (#53) * Bump version from 2.0.1-SNAPSHOT2 to 2.0.1-SNAPSHOT3 * Fixed blindness after choosing base if arena border isn't inside spawn * Bump version from 2.0.1-SNAPSHOT3 to 2.0.1-SNAPSHOT4 * Kits editing implementation (#54) * Adapted kits to new core * Recoded kits structure * Update settings.gradle.kts * Modify so I can run intellij * Cleaned up code with handling items * Added optional configurations * Added bow cooldown implementation --------- Co-authored-by: Tigerpanzer_02 <37453987+Tigerpanzer02@users.noreply.github.com> * Bump version from 2.0.1-SNAPSHOT4 to 2.0.1-SNAPSHOT5 * Fixed new kits integration * Bump version from 2.0.1-SNAPSHOT5 to 2.0.1-SNAPSHOT6 * Update ArenaEvents.java (#56) * Bump version from 2.0.1-SNAPSHOT6 to 2.0.1-SNAPSHOT7 * Renamed kit actions to abilities * Bump version from 2.0.1-SNAPSHOT7 to 2.0.1-SNAPSHOT8 * Fetch latest core changes * Bump version from 2.0.2-SNAPSHOT8 to 2.0.2-SNAPSHOT9 * adjusted CHANGELOG.md * Bump version from 2.0.2-SNAPSHOT9 to 2.0.2-SNAPSHOT10 --------- Co-authored-by: version-bump[github-action] <41898282+version-bump[github-action]@users.noreply.github.com> Co-authored-by: Lagggpixel <93872019+Lagggpixel@users.noreply.github.com>
- Loading branch information
1 parent
bd749b5
commit 6a0a6f4
Showing
24 changed files
with
845 additions
and
1,248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>plugily.projects</groupId> | ||
<artifactId>thebridge</artifactId> | ||
<version>2.0.1</version> | ||
<name>TheBridge</name> | ||
|
||
<properties> | ||
<java.version>1.8</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU General Public License v3</name> | ||
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<repositories> | ||
<repository> | ||
<id>papermc</id> | ||
<url>https://papermc.io/repo/repository/maven-public/</url> | ||
</repository> | ||
<repository> | ||
<id>plugilyprojects</id> | ||
<url>https://maven.plugily.xyz/releases</url> | ||
</repository> | ||
<repository> | ||
<id>plugilyprojects-snapshots</id> | ||
<url>https://maven.plugily.xyz/snapshots</url> | ||
</repository> | ||
<repository> | ||
<id>jitpack</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
<repository> | ||
<id>codemc-repo</id> | ||
<url>https://repo.codemc.org/repository/maven-public/</url> | ||
</repository> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.papermc.paper</groupId> | ||
<artifactId>paper-api</artifactId> | ||
<version>1.20.1-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations --> | ||
<dependency> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
<version>23.0.0</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>plugily.projects</groupId> | ||
<artifactId>MiniGamesBox-Classic</artifactId> | ||
<version>1.2.0-SNAPSHOT51</version> | ||
<scope>compile</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.12.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.10.1</version> | ||
<goals> | ||
<goal>compile</goal> | ||
</goals> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.4.0</version> | ||
<configuration> | ||
<windowtitle>Murder Mystery API docs for v${project.version}</windowtitle> | ||
<description>Minecraft survival minigame. | ||
Be the murderer, innocent or the detective! Don't be killed during the game to win! API | ||
documentation for hooking Murder Mystery with your plugin. | ||
</description> | ||
<destDir>minecraft/thebridge</destDir> | ||
<isOffline>false</isOffline> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.2.2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<relocations> | ||
<relocation> | ||
<pattern>com.zaxxer.hikari</pattern> | ||
<shadedPattern>plugily.projects.thebridge.database.hikari</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>plugily.projects.minigamesbox</pattern> | ||
<shadedPattern>plugily.projects.thebridge.minigamesbox</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>plugily.projects.commonsbox</pattern> | ||
<shadedPattern>plugily.projects.thebridge.commonsbox</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
<createDependencyReducedPom>false</createDependencyReducedPom> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- External beta versions discord deployer plugin --> | ||
<plugin> | ||
<groupId>plugily.projects</groupId> | ||
<artifactId>betty-maven-plugin</artifactId> | ||
<version>1.0.2</version> | ||
<configuration> | ||
<changelogFile>${project.basedir}/CHANGELOG.md</changelogFile> | ||
</configuration> | ||
</plugin> | ||
<!-- External beta versions discord deployer plugin --> | ||
</plugins> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-ssh</artifactId> | ||
<version>3.5.2</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
<distributionManagement> | ||
<repository> | ||
<id>plugily-projects</id> | ||
<url>https://maven.plugily.xyz/releases</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.