SHOW:
|
|
- or go back to the newest paste.
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> |