Advertisement
cadox8

pom

May 24th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.65 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.pixelgriffin</groupId>
  5.     <artifactId>survivalpets</artifactId>
  6.     <version>1.3</version>
  7.     <packaging>jar</packaging>
  8.     <properties>
  9.         <maven.compiler.source>1.8</maven.compiler.source>
  10.         <maven.compiler.target>1.8</maven.compiler.target>
  11.     </properties>
  12.     <build>
  13.         <sourceDirectory>src</sourceDirectory>
  14.         <resources>
  15.             <resource>
  16.                 <targetPath>.</targetPath>
  17.                 <filtering>true</filtering>
  18.                 <directory>src</directory>
  19.                 <includes>
  20.                     <include>*.yml</include>
  21.                 </includes>
  22.             </resource>
  23.         </resources>
  24.         <finalName>${project.artifactId}</finalName>
  25.     </build>
  26.     <repositories>
  27.         <repository>
  28.             <id>spigot-repo</id>
  29.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  30.         </repository>
  31.     </repositories>
  32.     <dependencies>
  33.         <dependency>
  34.             <groupId>org.spigotmc</groupId>
  35.             <artifactId>spigot-api</artifactId>
  36.             <version>1.11.2-R0.1-SNAPSHOT</version>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.bukkit</groupId>
  40.             <artifactId>craftbukkit</artifactId>
  41.             <version>1.11.2-R0.1-SNAPSHOT</version>
  42.         </dependency>
  43.     </dependencies>
  44. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement