Advertisement
joserobjr

pom.xml: https://www.youtube.com/watch?v=Neq9Hr4rCfM

May 16th, 2015
1,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.20 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>br.com.gamemods</groupId>
  8.     <artifactId>Tutorial</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>spigot</id>
  14.             <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  15.         </repository>
  16.     </repositories>
  17.  
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>org.bukkit</groupId>
  21.             <artifactId>bukkit</artifactId>
  22.             <version>1.8.3-R0.1-SNAPSHOT</version>
  23.         </dependency>
  24.     </dependencies>
  25.  
  26.     <build>
  27.         <plugins>
  28.             <plugin>
  29.                 <artifactId>maven-compiler-plugin</artifactId>
  30.                 <version>3.0</version>
  31.                 <configuration>
  32.                     <source>1.7</source>
  33.                     <target>1.7</target>
  34.                 </configuration>
  35.             </plugin>
  36.         </plugins>
  37.     </build>
  38.  
  39.  
  40. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement