fabled
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>studio.magemonkey</groupId> <artifactId>fabled</artifactId> <version>1.0.4-R0.56</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>studio.magemonkey</groupId> <artifactId>magemonkey-parent</artifactId> <version>1.21.5-R0.2</version> </parent> <artifactId>fabled</artifactId> <version>1.0.4-R0.56</version> <name>Fabled</name> <description>A Minecraft Bukkit plugin aiming to provide an easy code API and skill editor for all server owners to create unique and fully custom classes and skills. </description> <url> https://www.spigotmc.org/resources/fabled-an-rpg-engine-by-magemonkey-studio-formerly-proskillapi.91913/ </url> <properties> <java.version>14</java.version> <codex.version>1.1.1-R0.1-SNAPSHOT</codex.version> <delombok.dir>${project.build.directory}/javadoc-delombok</delombok.dir> </properties> <repositories> <repository> <id>sonatype</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </repository> <repository> <id>dmulloy2-repo</id> <url>https://repo.dmulloy2.net/repository/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.mockbukkit.mockbukkit</groupId> <artifactId>mockbukkit-v1.21</artifactId> </dependency> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.20.6-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> <version>5.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.github.MilkBowl</groupId> <artifactId>VaultAPI</artifactId> </dependency> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> </dependency> <dependency> <groupId>io.lumine</groupId> <artifactId>Mythic-Dist</artifactId> </dependency> <dependency> <groupId>ru.endlesscode.mimic</groupId> <artifactId>mimic-bukkit-api</artifactId> </dependency> <dependency> <groupId>LibsDisguises</groupId> <artifactId>LibsDisguises</artifactId> <version>10.0.44</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.spigotmc</groupId> <artifactId>spigot</artifactId> </exclusion> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>fr.neatmonster</groupId> <artifactId>nocheatplus</artifactId> <version>3.16.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> </dependency> <dependency> <groupId>com.sk89q.worldedit</groupId> <artifactId>worldedit-core</artifactId> </dependency> <dependency> <groupId>studio.magemonkey</groupId> <artifactId>codex</artifactId> <version>${codex.version}</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>com.mojang</groupId> <artifactId>authlib</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <systemPropertyVariables> <CODEX_VERSION>${codex.version}</CODEX_VERSION> <FABLED_VERSION>${project.version}</FABLED_VERSION> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>1.18.20.0</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> <outputDirectory>${delombok.dir}</outputDirectory> <addOutputDirectory>false</addOutputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <sourcepath>${delombok.dir}</sourcepath> <outputDirectory>gh-pages</outputDirectory> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>MageMonkeyStudio</name> <organization>MageMonkeyStudio</organization> <organizationUrl>https://magemonkey.studio</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/magemonkeystudio/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://github.com:magemonkeystudio/${project.artifactId}.git</developerConnection> <url>https://github.com/magemonkeystudio/${project.artifactId}</url> </scm> </project>