blockball
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.shynixn</groupId>
<artifactId>blockball</artifactId>
<version>4.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>
<groupId>com.github.shynixn</groupId>
<artifactId>blockball</artifactId>
<name>BlockBall</name>
<description>Spigot plugin to simulate a football/soccer game in minecraft.</description>
<url>https://github.com/Shynixn/BlockBall</url>
<packaging>jar</packaging>
<version>4.1.1</version>
<developers>
<developer>
<name>Shynixn</name>
</developer>
</developers>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.0-M4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.0.0-M4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<version>2.3.2</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>D:\Temp\plugins</outputDirectory>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>placeholderapi</id>
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft18R1</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.8.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft18R2</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.8.3.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft18R3</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.8.8.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft19R1</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.9.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft19R2</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.9.4.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft110R1</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.10.2.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft111R1</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.11.jar</systemPath>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>minecraft112R1</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${basedir}/lib/spigot-1.12.jar</systemPath>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.vorburger.mariaDB4j</groupId>
<artifactId>mariaDB4j</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git://github.com/Shynixn/BlockBall.git</connection>
<developerConnection>scm:git:ssh://github.com:Shynixn/BlockBall.git</developerConnection>
<url>http://github.com/Shynixn/BlockBall.git/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>