Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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.antarescraft.kloudy.concertpartyeffects</groupId>
- <artifactId>ConcertPartyEffects</artifactId>
- <version>1.0</version>
- <repositories>
- <repository>
- <id>spigot-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
- </repository>
- <repository>
- <id>ProtocolLib</id>
- <url>http://repo.dmulloy2.net/content/groups/public/</url>
- </repository>
- </repositories>
- <dependencies>
- <!--Spigot API-->
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
- <version>1.9.2-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.comphenix.protocol</groupId>
- <artifactId>ProtocolLib-API</artifactId>
- <version>4.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.antarescraft.kloudy.coreutils</groupId>
- <artifactId>KloudyCorePluginUtils-1.0</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/resources/KloudyCorePluginUtils-1.0.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
- <configuration>
- <outputDirectory>D:\Tim\Spigot 1.10 Server\plugins</outputDirectory>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>resources</directory>
- <includes>
- <include>plugin.yml</include>
- <include>config.yml</include>
- </includes>
- </resource>
- </resources>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment