mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-25 20:16:13 +01:00
Exclude some things from pom
This commit is contained in:
parent
891262ca00
commit
ec2d4a1846
12
pom.xml
12
pom.xml
@ -67,6 +67,10 @@
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>com.sk89q.spigot</groupId>
|
||||
<artifactId>bukkit-classloader-check</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- WorldGuard new version -->
|
||||
@ -127,6 +131,10 @@
|
||||
truevfs-profile-default_2.13
|
||||
</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
<artifactId>log4j-slf4j-impl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- PlaceholderAPI -->
|
||||
@ -140,6 +148,10 @@
|
||||
<groupId>me.rayzr522</groupId>
|
||||
<artifactId>jsonmessage</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.jetbrains</groupId>
|
||||
<artifactId>annotations</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- WildStacker -->
|
||||
|
@ -238,14 +238,13 @@ public class Placeholder {
|
||||
Matcher matcher = this.getRule().getMatcher(text);
|
||||
if (matcher == null)
|
||||
return lsInLs;
|
||||
while (matcher.find()) {
|
||||
if (matcher.find()) {
|
||||
try {
|
||||
for (Integer oneG : groups) {
|
||||
lsInLs.add(matcher.group(oneG + 1));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
}
|
||||
break;
|
||||
}
|
||||
return lsInLs;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user