Skip to content

Commit

Permalink
Version 3.1 & Some Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
efekurbann committed Jun 10, 2022
1 parent 6b3e5ff commit b97d169
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
3 changes: 1 addition & 2 deletions SyncCommands-bungeecord/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<description>Bungee-Side of SyncCommands</description>

<parent>
<groupId>io.github.efekurbann</groupId>
<artifactId>SyncCommands</artifactId>
<version>3.0</version>
<version>3.1</version>
</parent>

<artifactId>SyncCommands-bungeecord</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion SyncCommands-bungeecord/src/main/resources/bungee.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: SyncCommands
version: ${project.version}
main: io.github.efekurbann.synccommands.SyncCommandsBungee
description: Bungee-Side of SyncCommands
description: ${project.description}
author: hyperion
2 changes: 1 addition & 1 deletion SyncCommands-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.efekurbann</groupId>
<artifactId>SyncCommands</artifactId>
<version>3.0</version>
<version>3.1</version>
</parent>

<artifactId>SyncCommands-common</artifactId>
Expand Down
3 changes: 1 addition & 2 deletions SyncCommands-spigot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<description>Spigot-Side of SyncCommands.</description>

<parent>
<groupId>io.github.efekurbann</groupId>
<artifactId>SyncCommands</artifactId>
<version>3.0</version>
<version>3.1</version>
</parent>

<artifactId>SyncCommands-spigot</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion SyncCommands-spigot/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: ${project.version}
main: io.github.efekurbann.synccommands.SyncCommandsSpigot
api-version: 1.13
authors: [ hyperion ]
description: Spigot-Side of SyncCommands.
description: ${project.description}
commands:
sync:
aliases:
Expand Down
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

<groupId>io.github.efekurbann</groupId>
<artifactId>SyncCommands</artifactId>
<version>3.0</version>
<version>3.1</version>
<packaging>pom</packaging>

<description>Best Command Synchronization Plugin in the market.</description>

<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -45,12 +47,16 @@
<configuration>
<relocations>
<relocation>
<pattern>redis.clients.jedis</pattern>
<shadedPattern>io.github.efekurbann.synccommands.libs.jedis</shadedPattern>
<pattern>redis.clients</pattern>
<shadedPattern>io.github.efekurbann.synccommands.thirdparty.redis.clients</shadedPattern>
</relocation>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>io.github.efekurbann.synccommands.metrics</shadedPattern>
<shadedPattern>io.github.efekurbann.synccommands.thirdparty.org.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>com.rabbitmq</pattern>
<shadedPattern>io.github.efekurbann.synccommands.thirdparty.com.rabbitmq</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down

0 comments on commit b97d169

Please sign in to comment.