MBCore-spigot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.multicoredev.mbcore.spigot</groupId> <artifactId>MBCore-spigot</artifactId> <version>8.0.1</version> </dependency>
<?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> <parent> <groupId>it.multicoredev.mbcore</groupId> <artifactId>MBCore</artifactId> <version>8.0.1</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>it.multicoredev.mbcore.spigot</groupId> <artifactId>MBCore-spigot</artifactId> <version>8.0.1</version> <packaging>jar</packaging> <name>MBCore-spigot</name> <description>Library for Spigot, BungeeCord and Velocity plugin development</description> <url>https://github.com/MultiCoreNetwork/MBCore</url> <inceptionYear>2019</inceptionYear> <properties> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <organization> <name>MultiCore Network</name> <url>https://multicore.network</url> </organization> <licenses> <license> <name>The BSD 3-Clause License</name> <url>https://github.com/MultiCoreNetwork/MBCore/blob/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>LoreSchaeffer</id> <name>Lorenzo Magni</name> <url>https://github.com/LoreSchaeffer</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:MultiCoreNetwork/MBCore.git</connection> <developerConnection>scm:git:git@github.com:MultiCoreNetwork/MBCore.git</developerConnection> <url>git@github.com:MultiCoreNetwork/MBCore</url> </scm> <distributionManagement> <snapshotRepository> <id>lycoris</id> <url>https://repo.lycoris.it/repository/maven-snapshots</url> </snapshotRepository> <repository> <id>lycoris</id> <url>https://repo.lycoris.it/repository/maven-releases</url> </repository> </distributionManagement> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.20.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.kyori</groupId> <artifactId>adventure-platform-bukkit</artifactId> <version>4.3.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.1</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>