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