|
| 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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>pehost.xyz</groupId> |
| 5 | + <artifactId>addon</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
| 7 | + <build> |
| 8 | + <plugins> |
| 9 | + <plugin> |
| 10 | + <artifactId>maven-shade-plugin</artifactId> |
| 11 | + <version>3.1.0</version> |
| 12 | + <executions> |
| 13 | + <execution> |
| 14 | + <phase>package</phase> |
| 15 | + <goals> |
| 16 | + <goal>shade</goal> |
| 17 | + </goals> |
| 18 | + </execution> |
| 19 | + </executions> |
| 20 | + </plugin> |
| 21 | + </plugins> |
| 22 | + </build> |
| 23 | + <repositories> |
| 24 | + <repository> |
| 25 | + <id>spigot-repo</id> |
| 26 | + <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
| 27 | + </repository> |
| 28 | + <repository> |
| 29 | + <id>jitpack.io</id> |
| 30 | + <url>https://jitpack.io</url> |
| 31 | + </repository> |
| 32 | + </repositories> |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>org.spigotmc</groupId> |
| 36 | + <artifactId>spigot-api</artifactId> |
| 37 | + <version>1.8.8-R0.1-SNAPSHOT</version> |
| 38 | + <scope>provided</scope> |
| 39 | + <exclusions> |
| 40 | + <exclusion> |
| 41 | + <artifactId>commons-lang</artifactId> |
| 42 | + <groupId>commons-lang</groupId> |
| 43 | + </exclusion> |
| 44 | + <exclusion> |
| 45 | + <artifactId>json-simple</artifactId> |
| 46 | + <groupId>com.googlecode.json-simple</groupId> |
| 47 | + </exclusion> |
| 48 | + <exclusion> |
| 49 | + <artifactId>guava</artifactId> |
| 50 | + <groupId>com.google.guava</groupId> |
| 51 | + </exclusion> |
| 52 | + <exclusion> |
| 53 | + <artifactId>gson</artifactId> |
| 54 | + <groupId>com.google.code.gson</groupId> |
| 55 | + </exclusion> |
| 56 | + <exclusion> |
| 57 | + <artifactId>ebean</artifactId> |
| 58 | + <groupId>org.avaje</groupId> |
| 59 | + </exclusion> |
| 60 | + <exclusion> |
| 61 | + <artifactId>snakeyaml</artifactId> |
| 62 | + <groupId>org.yaml</groupId> |
| 63 | + </exclusion> |
| 64 | + <exclusion> |
| 65 | + <artifactId>bungeecord-chat</artifactId> |
| 66 | + <groupId>net.md-5</groupId> |
| 67 | + </exclusion> |
| 68 | + </exclusions> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.bukkit</groupId> |
| 72 | + <artifactId>bukkit</artifactId> |
| 73 | + <version>1.8.8-R0.1-SNAPSHOT</version> |
| 74 | + <scope>provided</scope> |
| 75 | + <exclusions> |
| 76 | + <exclusion> |
| 77 | + <artifactId>commons-lang</artifactId> |
| 78 | + <groupId>commons-lang</groupId> |
| 79 | + </exclusion> |
| 80 | + <exclusion> |
| 81 | + <artifactId>json-simple</artifactId> |
| 82 | + <groupId>com.googlecode.json-simple</groupId> |
| 83 | + </exclusion> |
| 84 | + <exclusion> |
| 85 | + <artifactId>guava</artifactId> |
| 86 | + <groupId>com.google.guava</groupId> |
| 87 | + </exclusion> |
| 88 | + <exclusion> |
| 89 | + <artifactId>gson</artifactId> |
| 90 | + <groupId>com.google.code.gson</groupId> |
| 91 | + </exclusion> |
| 92 | + <exclusion> |
| 93 | + <artifactId>ebean</artifactId> |
| 94 | + <groupId>org.avaje</groupId> |
| 95 | + </exclusion> |
| 96 | + <exclusion> |
| 97 | + <artifactId>snakeyaml</artifactId> |
| 98 | + <groupId>org.yaml</groupId> |
| 99 | + </exclusion> |
| 100 | + </exclusions> |
| 101 | + </dependency> |
| 102 | + </dependencies> |
| 103 | + <properties> |
| 104 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 105 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 106 | + </properties> |
| 107 | +</project> |
| 108 | + |
0 commit comments