-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36c7b19
commit 4868dc7
Showing
1 changed file
with
202 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ MurderMystery - Find the murderer, kill him and survive! | ||
~ Copyright (c) 2022 Plugily Projects - maintained by Tigerpanzer_02 and contributors | ||
~ | ||
~ This program is free software: you can redistribute it and/or modify | ||
~ it under the terms of the GNU General Public License as published by | ||
~ the Free Software Foundation, either version 3 of the License, or | ||
~ (at your option) any later version. | ||
~ | ||
~ This program is distributed in the hope that it will be useful, | ||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
~ GNU General Public License for more details. | ||
~ | ||
~ You should have received a copy of the GNU General Public License | ||
~ along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
|
||
<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>murdermystery</artifactId> | ||
<version>2.0.0-java8-snapshot</version> | ||
<name>MurderMystery</name> | ||
|
||
<properties> | ||
<java.version>1.8</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<sonar.projectKey>Plugily-Projects_MurderMystery</sonar.projectKey> | ||
<sonar.organization>plugily-projects</sonar.organization> | ||
<sonar.host.url>https://sonarcloud.io</sonar.host.url> | ||
</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.19.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>org.golde</groupId> | ||
<artifactId>corpsereborn</artifactId> | ||
<version>2.14.0</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/lib/CorpseReborn.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>plugily.projects</groupId> | ||
<artifactId>MiniGamesBox-Classic</artifactId> | ||
<version>1.3.1</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/murdermystery</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.murdermystery.database.hikari</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>plugily.projects.minigamesbox</pattern> | ||
<shadedPattern>plugily.projects.murdermystery.minigamesbox</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>plugily.projects.commonsbox</pattern> | ||
<shadedPattern>plugily.projects.murdermystery.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> |