Skip to content

Commit 0cb0013

Browse files
committed
Hopefully it fixes it.
Fixes Begad666/cps#16
1 parent c89600d commit 0cb0013

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

coreapi-api/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>CoreAPI</artifactId>
77
<groupId>begad.mc.apis</groupId>
8-
<version>1.3.5</version>
8+
<version>1.3.6</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -41,6 +41,10 @@
4141
<shadedPattern>begad.libs.mariadb.jdbc</shadedPattern>
4242
</relocation>
4343
</relocations>
44+
<transformers>
45+
<transformer
46+
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
47+
</transformers>
4448
</configuration>
4549
<executions>
4650
<execution>

coreapi-api/src/test/java/begad/mc/placeholders/PlaceholderGroupTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class PlaceholderGroupTest {
2121

2222
@BeforeAll
2323
public void setUp() {
24-
placeholderGroup = new PlaceholderGroup("Test", "%bungee_([A-Z]+):([A-Z]+)%", Pattern.CASE_INSENSITIVE);
24+
placeholderGroup = new PlaceholderGroup("Test", "%bungee_([1-Z]+):([A-Z]+)%", Pattern.CASE_INSENSITIVE);
2525
placeholderGroup.addPlaceholder(new Placeholder("TestPlayers", "%bungee_(.*):players%", (String input, Matcher matcher) -> {
2626
String output = input;
2727
if (matcher.find()) {

coreapi-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>CoreAPI</artifactId>
77
<groupId>begad.mc.apis</groupId>
8-
<version>1.3.5</version>
8+
<version>1.3.6</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CoreAPI
22
author: begad
3-
version: 1.3.3
3+
version: 1.3.6
44
description: Core API for my plugins
55
main: begad.mc.uni.plugin.coreapi.BungeeCore
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CoreAPI
22
author: begad
3-
version: 1.3.3
3+
version: 1.3.6
44
description: Core API for my plugins
55
main: begad.mc.uni.plugin.coreapi.SpigotCore

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>begad.mc.apis</groupId>
88
<artifactId>CoreAPI</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.3.5</version>
10+
<version>1.3.6</version>
1111
<modules>
1212
<module>coreapi-api</module>
1313
<module>coreapi-plugin</module>

0 commit comments

Comments
 (0)