Advertisement
PiggiesGoSqueal

pom.xml

Aug 25th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>io.github.pinkpig3777</groupId>
  8.     <artifactId>mavenplugin</artifactId>
  9.     <version>1.0.0</version>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>spigot-repo</id>
  14.             <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  15.         </repository>
  16.         <repository>
  17.             <id>paper-repo</id>
  18.             <url>https://papermc.io/repo/repository/maven-public/</url>
  19.         </repository>
  20.     </repositories>
  21.  
  22.     <dependencies>
  23.         <!--Spigot API-->
  24.         <dependency>
  25.             <groupId>org.spigotmc</groupId>
  26.             <artifactId>spigot-api</artifactId>
  27.             <version>1.14.4-R0.1-SNAPSHOT</version>
  28.             <scope>provided</scope>
  29.         </dependency>
  30.     </dependencies>
  31.  
  32. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement