Advertisement
furest

POM.xml

Mar 12th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.71 KB | None | 0 0
  1. <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">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>me.wizzledonker.plugins.trainticket</groupId>
  4.     <artifactId>TrainTicket</artifactId>
  5.     <version>1.5</version>
  6.     <name>TrainTicket</name>
  7.     <repositories>
  8.              <repository>
  9.                       <id>bukkit-repo</id>
  10.                       <url>http://nexus.theyeticave.net/content/repositories/pub_releases/</url>
  11.              </repository>
  12.          <repository>
  13.               <id>vault-repo</id>
  14.               <url>http://ci.herocraftonline.com/plugin/repository/everything/</url>
  15.          </repository>
  16.     </repositories>
  17.     <build>
  18.         <plugins>
  19.             <plugin>
  20.                 <groupId>org.apache.maven.plugins</groupId>
  21.                 <artifactId>maven-compiler-plugin</artifactId>
  22.                 <version>2.0.2</version>
  23.                 <configuration>
  24.                     <source>1.5</source>
  25.                     <target>1.5</target>
  26.                 </configuration>
  27.             </plugin>
  28.         </plugins>
  29.     </build>
  30.     <dependencies>
  31.         <dependency>
  32.             <groupId>net.milkbowl.vault</groupId>
  33.         <artifactId>Vault</artifactId>
  34.         <version>1.2.32</version>
  35.             <type>jar</type>
  36.             <scope>compile</scope>
  37.         </dependency>
  38.     <dependency>
  39.             <groupId>org.bukkit</groupId>
  40.             <artifactId>bukkit</artifactId>
  41.             <version>1.7.2-R0.1-SNAPSHOT</version>
  42.             <type>jar</type>
  43.             <scope>compile</scope>
  44.         </dependency>
  45.     </dependencies>
  46. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement