Advertisement
PiggiesGoSqueal

pom.xml

Aug 25th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.07 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.  
  23.  
  24.     <dependencies>
  25.         <!--Spigot API-->
  26.         <dependency>
  27.             <groupId>org.spigotmc</groupId>
  28.             <artifactId>spigot-api</artifactId>
  29.             <version>1.14.4-R0.1-SNAPSHOT</version>
  30.             <scope>provided</scope>
  31.         </dependency>
  32.     </dependencies>
  33.  
  34. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement