|
| 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>org.dynmap</groupId> |
| 5 | + <artifactId>Dynmap-WorldGuard</artifactId> |
| 6 | + <version>1.4-beta-1</version> |
| 7 | + <build> |
| 8 | + <resources> |
| 9 | + <resource> |
| 10 | + <filtering>true</filtering> |
| 11 | + <directory>src/main/resources</directory> |
| 12 | + <includes> |
| 13 | + <include>*.yml</include> |
| 14 | + <include>*.txt</include> |
| 15 | + </includes> |
| 16 | + </resource> |
| 17 | + <resource> |
| 18 | + <directory>src/main/resources</directory> |
| 19 | + <excludes> |
| 20 | + <exclude>*.yml</exclude> |
| 21 | + <exclude>*.txt</exclude> |
| 22 | + </excludes> |
| 23 | + </resource> |
| 24 | + </resources> |
| 25 | + <plugins> |
| 26 | + <plugin> |
| 27 | + <artifactId>maven-compiler-plugin</artifactId> |
| 28 | + <version>2.0.2</version> |
| 29 | + <configuration> |
| 30 | + <source>1.8</source> |
| 31 | + <target>1.8</target> |
| 32 | + </configuration> |
| 33 | + </plugin> |
| 34 | + <plugin> |
| 35 | + <artifactId>maven-shade-plugin</artifactId> |
| 36 | + <version>3.2.1</version> |
| 37 | + <executions> |
| 38 | + <execution> |
| 39 | + <phase>package</phase> |
| 40 | + <goals> |
| 41 | + <goal>shade</goal> |
| 42 | + </goals> |
| 43 | + <configuration> |
| 44 | + <minimizeJar>true</minimizeJar> |
| 45 | + <filters> |
| 46 | + <filter> |
| 47 | + <artifact>org.bstats:bstats-bukkit:2.2.1</artifact> |
| 48 | + <includes> |
| 49 | + <include>**</include> |
| 50 | + </includes> |
| 51 | + </filter> |
| 52 | + <filter> |
| 53 | + <artifact>com.sk89q:squirrelid</artifact> |
| 54 | + <includes> |
| 55 | + <include>**</include> |
| 56 | + </includes> |
| 57 | + </filter> |
| 58 | + </filters> |
| 59 | + </configuration> |
| 60 | + </execution> |
| 61 | + </executions> |
| 62 | + <configuration> |
| 63 | + <relocations> |
| 64 | + <relocation> |
| 65 | + <pattern>com.sk89q.squirrelid</pattern> |
| 66 | + <shadedPattern>com.sk89q.worldguard.util.profile</shadedPattern> |
| 67 | + </relocation> |
| 68 | + <relocation> |
| 69 | + <pattern>org.bstats</pattern> |
| 70 | + <shadedPattern>org.dynmap.worldguard.bstats</shadedPattern> |
| 71 | + </relocation> |
| 72 | + </relocations> |
| 73 | + </configuration> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </build> |
| 77 | + <repositories> |
| 78 | + <repository> |
| 79 | + <releases /> |
| 80 | + <snapshots /> |
| 81 | + <id>dynmap-repo</id> |
| 82 | + <url>https://repo.mikeprimm.com/</url> |
| 83 | + </repository> |
| 84 | + <repository> |
| 85 | + <id>spigot-repo</id> |
| 86 | + <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
| 87 | + </repository> |
| 88 | + <repository> |
| 89 | + <id>enginehub-maven</id> |
| 90 | + <url>https://maven.enginehub.org/repo/</url> |
| 91 | + </repository> |
| 92 | + <repository> |
| 93 | + <releases /> |
| 94 | + <snapshots /> |
| 95 | + <id>essentials</id> |
| 96 | + <url>https://repo.essentialsx.net/releases/</url> |
| 97 | + </repository> |
| 98 | + </repositories> |
| 99 | + <dependencies> |
| 100 | + <dependency> |
| 101 | + <groupId>us.dynmap</groupId> |
| 102 | + <artifactId>dynmap-api</artifactId> |
| 103 | + <version>3.3-SNAPSHOT</version> |
| 104 | + <scope>provided</scope> |
| 105 | + <exclusions> |
| 106 | + <exclusion> |
| 107 | + <artifactId>DynmapCoreAPI</artifactId> |
| 108 | + <groupId>us.dynmap</groupId> |
| 109 | + </exclusion> |
| 110 | + </exclusions> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.bukkit</groupId> |
| 114 | + <artifactId>bukkit</artifactId> |
| 115 | + <version>1.13.2-R0.1-SNAPSHOT</version> |
| 116 | + <scope>provided</scope> |
| 117 | + <exclusions> |
| 118 | + <exclusion> |
| 119 | + <artifactId>commons-lang</artifactId> |
| 120 | + <groupId>commons-lang</groupId> |
| 121 | + </exclusion> |
| 122 | + <exclusion> |
| 123 | + <artifactId>json-simple</artifactId> |
| 124 | + <groupId>com.googlecode.json-simple</groupId> |
| 125 | + </exclusion> |
| 126 | + <exclusion> |
| 127 | + <artifactId>guava</artifactId> |
| 128 | + <groupId>com.google.guava</groupId> |
| 129 | + </exclusion> |
| 130 | + <exclusion> |
| 131 | + <artifactId>gson</artifactId> |
| 132 | + <groupId>com.google.code.gson</groupId> |
| 133 | + </exclusion> |
| 134 | + <exclusion> |
| 135 | + <artifactId>snakeyaml</artifactId> |
| 136 | + <groupId>org.yaml</groupId> |
| 137 | + </exclusion> |
| 138 | + </exclusions> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>com.sk89q.worldedit</groupId> |
| 142 | + <artifactId>worldedit-bukkit</artifactId> |
| 143 | + <version>7.2.0</version> |
| 144 | + <scope>provided</scope> |
| 145 | + <exclusions> |
| 146 | + <exclusion> |
| 147 | + <artifactId>worldedit-core</artifactId> |
| 148 | + <groupId>com.sk89q.worldedit</groupId> |
| 149 | + </exclusion> |
| 150 | + <exclusion> |
| 151 | + <artifactId>bukkit</artifactId> |
| 152 | + <groupId>com.sk89q.worldedit.worldedit-libs</groupId> |
| 153 | + </exclusion> |
| 154 | + <exclusion> |
| 155 | + <artifactId>spigot-api</artifactId> |
| 156 | + <groupId>org.spigotmc</groupId> |
| 157 | + </exclusion> |
| 158 | + <exclusion> |
| 159 | + <artifactId>paperlib</artifactId> |
| 160 | + <groupId>io.papermc</groupId> |
| 161 | + </exclusion> |
| 162 | + <exclusion> |
| 163 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 164 | + <groupId>org.apache.logging.log4j</groupId> |
| 165 | + </exclusion> |
| 166 | + <exclusion> |
| 167 | + <artifactId>fastutil</artifactId> |
| 168 | + <groupId>it.unimi.dsi</groupId> |
| 169 | + </exclusion> |
| 170 | + </exclusions> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>com.sk89q.worldguard</groupId> |
| 174 | + <artifactId>worldguard-bukkit</artifactId> |
| 175 | + <version>7.0.0</version> |
| 176 | + <scope>provided</scope> |
| 177 | + <exclusions> |
| 178 | + <exclusion> |
| 179 | + <artifactId>worldguard-core</artifactId> |
| 180 | + <groupId>com.sk89q.worldguard</groupId> |
| 181 | + </exclusion> |
| 182 | + <exclusion> |
| 183 | + <artifactId>commandbook</artifactId> |
| 184 | + <groupId>com.sk89q</groupId> |
| 185 | + </exclusion> |
| 186 | + </exclusions> |
| 187 | + </dependency> |
| 188 | + </dependencies> |
| 189 | + <dependencyManagement> |
| 190 | + <dependencies> |
| 191 | + <dependency> |
| 192 | + <groupId>org.bstats</groupId> |
| 193 | + <artifactId>bstats-bukkit</artifactId> |
| 194 | + <version>2.2.1</version> |
| 195 | + <scope>compile</scope> |
| 196 | + </dependency> |
| 197 | + </dependencies> |
| 198 | + </dependencyManagement> |
| 199 | +</project> |
0 commit comments