proskillapiparties
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.promcteam</groupId> <artifactId>proskillapiparties</artifactId> <version>1.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>com.promcteam</groupId> <artifactId>promc-parent</artifactId> <version>1.19.2-SNAPSHOT</version> </parent> <artifactId>proskillapiparties</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>ProSkillAPIParties</name> <description>A Parties extension for ProSkillAPI</description> <url>https://github.com/promcteam/proskillapiparties</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>wwuHHmm</maven.build.timestamp.format> </properties> <build> <directory>${java.io.tmpdir}/maven-target/</directory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <outputDirectory>../ProBuilds</outputDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>readme</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.basedir}</outputDirectory> <resources> <resource> <directory>doc</directory> <includes> <include>README.md</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <nonFilteredFileExtensions> <nonFilteredFileExtension>jar</nonFilteredFileExtension> </nonFilteredFileExtensions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <repositories> <repository> <id>spigotmc-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </repository> <repository> <id>placeholderapi</id> <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.github.seeseemelk</groupId> <artifactId>MockBukkit-v1.19</artifactId> <version>2.132.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> </dependency> <dependency> <groupId>com.promcteam</groupId> <artifactId>promccore</artifactId> </dependency> <dependency> <groupId>com.promcteam</groupId> <artifactId>proskillapi</artifactId> </dependency> <dependency> <groupId>org.cyberiantiger.minecraft</groupId> <artifactId>instances</artifactId> <version>1.24</version> <scope>system</scope> <systemPath>${basedir}/lib/instances-1.24.jar</systemPath> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>23.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> <version>2.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>me.clip</groupId> <artifactId>placeholderapi</artifactId> <version>2.11.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport</artifactId> <version>4.1.84.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>4.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>4.8.0</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>ProMCTeam</name> <organization>ProMCTeam</organization> <organizationUrl>https://promcteam.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/promcteam/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://github.com:promcteam/${project.artifactId}.git</developerConnection> <url>https://github.com/promcteam/${project.artifactId}</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>${nexus.url}/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>${nexus.url}/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>