zTpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.yleoft</groupId> <artifactId>zTpa</artifactId> <version>1.0.0</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>me.yleoft</groupId> <artifactId>zTpa</artifactId> <name>zTpa</name> <version>1.0.0</version> <description>Your new favorite tpa plugin</description> <url>https://github.com/yL3oft/zTPA</url> <developers> <developer> <id>yleoft</id> <name>Leonardo Maehara</name> <email>maehara.leonardo@gmail.com</email> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/yL3oft/zTPA.git</connection> <developerConnection>scm:git:ssh://github.com:yL3oft/zTPA.git</developerConnection> <url>https://github.com/yL3oft/zTPA</url> </scm> <build> <defaultGoal>clean package</defaultGoal> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>me.yleoft.zAPI</pattern> <shadedPattern>me.yleoft.zTPA.shaded.zAPI</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <encoding>UTF-8</encoding> <source>1.8</source> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>spigotmc-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>papermc</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>codemc-repo</id> <url>https://repo.codemc.io/repository/maven-public/</url> </repository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> <repository> <id>placeholderapi</id> <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> </repository> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> <repository> <releases> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> <id>sk89q-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.21.7-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>dev.folia</groupId> <artifactId>folia-api</artifactId> <version>1.21.4-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> <version>2.11.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.bstats</groupId> <artifactId>bstats-bukkit</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.MilkBowl</groupId> <artifactId>VaultAPI</artifactId> <version>1.7.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> <version>7.0.9</version> <scope>provided</scope> </dependency> </dependencies> <properties> <maven.compiler.target>1.8</maven.compiler.target> <java.version>8</java.version> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>