Advertisement
Guest User

pom.xml

a guest
Apr 21st, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.31 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>vc.pvp</groupId>
  8.     <artifactId>skywars</artifactId>
  9.     <name>SkyWars</name>
  10.     <version>1.1.1-${build.type}${build.number}</version>
  11.     <description>SkyWars plugin</description>
  12.     <packaging>jar</packaging>
  13.  
  14.     <repositories>
  15.         <repository>
  16.             <id>bukkit-repo</id>
  17.             <url>http://repo.bukkit.org/content/groups/public</url>
  18.         </repository>
  19.         <repository>
  20.             <id>sk89q-repo</id>
  21.             <url>http://maven.sk89q.com/repo/</url>
  22.         </repository>
  23.         <repository>
  24.             <id>vault-repo</id>
  25.             <url>http://ci.herocraftonline.com/plugin/repository/everything</url>
  26.         </repository>
  27.         <repository>
  28.             <id>multiverse-repo</id>
  29.             <url>http://repo.onarandombox.com/content/groups/public</url>
  30.         </repository>
  31.     </repositories>
  32.  
  33.     <dependencies>
  34.         <dependency>
  35.             <groupId>org.bukkit</groupId>
  36.             <artifactId>bukkit</artifactId>
  37.             <version>LATEST</version>
  38.             <scope>compile</scope>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>com.sk89q</groupId>
  42.             <artifactId>worldedit</artifactId>
  43.             <version>LATEST</version>
  44.             <scope>compile</scope>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>com.sk89q</groupId>
  48.             <artifactId>worldguard</artifactId>
  49.             <version>LATEST</version>
  50.             <scope>compile</scope>
  51.         </dependency>
  52.         <dependency>
  53.             <groupId>com.sk89q</groupId>
  54.             <artifactId>commandbook</artifactId>
  55.             <version>LATEST</version>
  56.             <type>jar</type>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>net.milkbowl</groupId>
  60.             <artifactId>vault</artifactId>
  61.             <version>1.2.27</version>
  62.             <scope>compile</scope>
  63.         </dependency>
  64.         <dependency>
  65.             <groupId>com.onarandombox.multiversecore</groupId>
  66.             <artifactId>Multiverse-Core</artifactId>
  67.             <version>LATEST</version>
  68.             <scope>compile</scope>
  69.         </dependency>
  70.         <dependency>
  71.             <groupId>com.earth2me</groupId>
  72.             <artifactId>essentials</artifactId>
  73.             <version>LATEST</version>
  74.             <scope>system</scope>
  75.             <systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.flobi</groupId>
  79.             <artifactId>WhatIsIt</artifactId>
  80.             <version>1.3.6</version>
  81.             <scope>system</scope>
  82.             <systemPath>${project.basedir}/lib/WhatIsIt.jar</systemPath>
  83.         </dependency>
  84.     </dependencies>
  85.  
  86.     <build>
  87.         <defaultGoal>clean package</defaultGoal>
  88.         <finalName>SkyWars</finalName>
  89.         <resources>
  90.             <resource>
  91.                 <targetPath>.</targetPath>
  92.                 <filtering>true</filtering>
  93.                 <directory>src/main/resources</directory>
  94.                 <includes>
  95.                     <include>plugin.yml</include>
  96.                     <include>config.yml</include>
  97.                     <include>tables.sql</include>
  98.                     <include>chest.yml</include>
  99.                     <include>example.yml</include>
  100.                     <include>messages.yml</include>
  101.                 </includes>
  102.             </resource>
  103.         </resources>
  104.         <plugins>
  105.             <plugin>
  106.                 <groupId>org.apache.maven.plugins</groupId>
  107.                 <artifactId>maven-compiler-plugin</artifactId>
  108.                 <version>2.5.1</version>
  109.                 <configuration>
  110.                     <source>1.6</source>
  111.                     <target>1.6</target>
  112.                 </configuration>
  113.             </plugin>
  114.         </plugins>
  115.     </build>
  116.  
  117.     <properties>
  118.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  119.         <build.type></build.type>
  120.         <build.number>SNAPSHOT</build.number>
  121.     </properties>
  122.  
  123.  
  124. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement