|
| 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>com.volmit</groupId> |
| 5 | + <artifactId>GlossChatBubbles</artifactId> |
| 6 | + <name>GlossChatBubbles</name> |
| 7 | + <version>1.0</version> |
| 8 | + <build> |
| 9 | + <resources> |
| 10 | + <resource> |
| 11 | + <filtering>true</filtering> |
| 12 | + <directory>src/main/resources</directory> |
| 13 | + <includes> |
| 14 | + <include>**/*.yml</include> |
| 15 | + <include>**/*.json</include> |
| 16 | + <include>**/*.txt</include> |
| 17 | + </includes> |
| 18 | + </resource> |
| 19 | + </resources> |
| 20 | + <plugins> |
| 21 | + <plugin> |
| 22 | + <artifactId>maven-shade-plugin</artifactId> |
| 23 | + <version>3.1.0</version> |
| 24 | + <executions> |
| 25 | + <execution> |
| 26 | + <phase>package</phase> |
| 27 | + <goals> |
| 28 | + <goal>shade</goal> |
| 29 | + </goals> |
| 30 | + </execution> |
| 31 | + </executions> |
| 32 | + <configuration> |
| 33 | + <relocations> |
| 34 | + <relocation> |
| 35 | + <pattern>com.volmit.volume</pattern> |
| 36 | + <shadedPattern>com.volmit.gloss.chatbubbles.volume</shadedPattern> |
| 37 | + </relocation> |
| 38 | + </relocations> |
| 39 | + </configuration> |
| 40 | + </plugin> |
| 41 | + </plugins> |
| 42 | + </build> |
| 43 | + <repositories> |
| 44 | + <repository> |
| 45 | + <id>spigot-repo</id> |
| 46 | + <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
| 47 | + </repository> |
| 48 | + <repository> |
| 49 | + <id>volmit</id> |
| 50 | + <url>http://nexus.volmit.com/content/repositories/volmit</url> |
| 51 | + </repository> |
| 52 | + </repositories> |
| 53 | + <dependencies> |
| 54 | + <dependency> |
| 55 | + <groupId>org.spigotmc</groupId> |
| 56 | + <artifactId>spigot-api</artifactId> |
| 57 | + <version>1.12.2-R0.1-SNAPSHOT</version> |
| 58 | + <scope>provided</scope> |
| 59 | + <exclusions> |
| 60 | + <exclusion> |
| 61 | + <artifactId>commons-lang</artifactId> |
| 62 | + <groupId>commons-lang</groupId> |
| 63 | + </exclusion> |
| 64 | + <exclusion> |
| 65 | + <artifactId>json-simple</artifactId> |
| 66 | + <groupId>com.googlecode.json-simple</groupId> |
| 67 | + </exclusion> |
| 68 | + <exclusion> |
| 69 | + <artifactId>guava</artifactId> |
| 70 | + <groupId>com.google.guava</groupId> |
| 71 | + </exclusion> |
| 72 | + <exclusion> |
| 73 | + <artifactId>gson</artifactId> |
| 74 | + <groupId>com.google.code.gson</groupId> |
| 75 | + </exclusion> |
| 76 | + <exclusion> |
| 77 | + <artifactId>snakeyaml</artifactId> |
| 78 | + <groupId>org.yaml</groupId> |
| 79 | + </exclusion> |
| 80 | + <exclusion> |
| 81 | + <artifactId>bungeecord-chat</artifactId> |
| 82 | + <groupId>net.md-5</groupId> |
| 83 | + </exclusion> |
| 84 | + </exclusions> |
| 85 | + </dependency> |
| 86 | + </dependencies> |
| 87 | + <properties> |
| 88 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 89 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 90 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 91 | + </properties> |
| 92 | +</project> |
| 93 | + |
0 commit comments