protectionstones
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.espi</groupId> <artifactId>protectionstones</artifactId> <version>2.10.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>dev.espi</groupId> <artifactId>protectionstones</artifactId> <name>ProtectionStones</name> <version>2.10.2</version> <description>A grief prevention plugin for Spigot Minecraft servers.</description> <url>https://github.com/espidev/ProtectionStones</url> <developers> <developer> <name>Devin Lin</name> <email>espidev@gmail.com</email> <organization>EstiNet</organization> <organizationUrl>https://estinet.net</organizationUrl> </developer> </developers> <licenses> <license> <name>GPLv3</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/espidev/ProtectionStones.git</connection> <developerConnection>scm:git:ssh://github.com:espidev/ProtectionStones.git</developerConnection> <url>https://github.com/espidev/ProtectionStones/tree/master</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>plugin.yml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>plugin.yml</exclude> </excludes> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>16</source> <target>16</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <minimizeJar>true</minimizeJar> <relocations> <relocation> <pattern>org.bstats</pattern> <shadedPattern>dev.espi.protectionstones</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <serverId>ossrh-releases-dev.espi</serverId> <stagingProfileId>beff2b0d8cf966</stagingProfileId> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>spigotmc-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>enginehub-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> <repository> <id>CodeMC</id> <url>https://repo.codemc.org/repository/maven-public</url> </repository> <repository> <id>placeholderapi</id> <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> </repository> <repository> <id>papermc</id> <url>https://papermc.io/repo/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.17.1-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> <version>7.0.6-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>org.bukkit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.milkbowl.vault</groupId> <artifactId>VaultAPI</artifactId> <version>1.7</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldedit</groupId> <artifactId>worldedit-bukkit</artifactId> <version>7.2.6-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>org.bukkit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> <version>2.10.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.luckperms</groupId> <artifactId>api</artifactId> <version>5.2</version> <scope>provided</scope> </dependency> </dependencies> <properties> <java.version>1.16</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>