|
25 | 25 | <scope>provided</scope> |
26 | 26 | </dependency> |
27 | 27 | <dependency> |
28 | | - <groupId>me.clip</groupId> |
29 | | - <artifactId>PlaceholderAPI</artifactId> |
30 | | - <version>LATEST</version> |
31 | | - <scope>provided</scope> |
32 | | - <exclusions> |
33 | | - <exclusion> |
34 | | - <groupId>me.rayzr522</groupId> |
35 | | - <artifactId>jsonmessage</artifactId> |
36 | | - </exclusion> |
37 | | - <exclusion> |
38 | | - <groupId>org.bstats</groupId> |
39 | | - <artifactId>bstats-bukkit</artifactId> |
40 | | - </exclusion> |
41 | | - </exclusions> |
| 28 | + <groupId>me.clip</groupId> |
| 29 | + <artifactId>placeholderapi</artifactId> |
| 30 | + <version>2.10.9</version> |
| 31 | + <scope>provided</scope> |
| 32 | + <exclusions> |
| 33 | + <exclusion> |
| 34 | + <groupId>me.rayzr522</groupId> |
| 35 | + <artifactId>jsonmessage</artifactId> |
| 36 | + </exclusion> |
| 37 | + <exclusion> |
| 38 | + <groupId>org.bstats</groupId> |
| 39 | + <artifactId>bstats-bukkit</artifactId> |
| 40 | + </exclusion> |
| 41 | + </exclusions> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>com.github.ben-manes.caffeine</groupId> |
| 45 | + <artifactId>caffeine</artifactId> |
| 46 | + <version>1.3.3</version> |
| 47 | + <scope>compile</scope> |
42 | 48 | </dependency> |
43 | 49 | </dependencies> |
44 | 50 |
|
|
69 | 75 | <useIncrementalCompilation>false</useIncrementalCompilation> |
70 | 76 | </configuration> |
71 | 77 | </plugin> |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-shade-plugin</artifactId> |
| 81 | + <version>3.2.4</version> |
| 82 | + <configuration> |
| 83 | + <minimizeJar>true</minimizeJar> |
| 84 | + <relocations> |
| 85 | + <relocation> |
| 86 | + <pattern>com.github.benmanes.caffeine</pattern> |
| 87 | + <shadedPattern>com.extendedclip.papi.expansion.server.caffeine</shadedPattern> |
| 88 | + </relocation> |
| 89 | + </relocations> |
| 90 | + </configuration> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <phase>package</phase> |
| 94 | + <goals> |
| 95 | + <goal>shade</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
72 | 100 | </plugins> |
73 | 101 | </build> |
74 | 102 | </project> |
0 commit comments