Skip to content

Commit

Permalink
New version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SBPrime committed Jun 29, 2021
1 parent b06216b commit 38588fd
Show file tree
Hide file tree
Showing 16 changed files with 50 additions and 49 deletions.
2 changes: 1 addition & 1 deletion BlocksHub-Base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions BlocksHub-BaseBukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>

Expand Down
6 changes: 3 additions & 3 deletions BlocksHub-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-InnerAPI</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
package org.primesoft.blockshub;

import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.List;
import org.primesoft.blockshub.api.IBlocksHubEndpoint;
Expand Down Expand Up @@ -266,8 +267,8 @@ private void loadPlugin(String resource) {
log(String.format("Resource %1$s entry point %2$s has no default constructor.", resource, entryPoint.getCanonicalName()));
return;
}
if (!ctor.isAccessible()) {
log(String.format("Resource %1$s entry point %2$s has a private default constructor.", resource, entryPoint.getCanonicalName()));
if (!Modifier.isPublic(ctor.getModifiers())) {
log(String.format("Resource %1$s entry point %2$s has no private constructor.", resource, entryPoint.getCanonicalName()));
return;
}

Expand Down
10 changes: 5 additions & 5 deletions BlocksHub-CoreBukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,31 +76,31 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-InnerAPI</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Core</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions BlocksHub-Deploy-API/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
22 changes: 11 additions & 11 deletions BlocksHub-Deploy-Bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,69 +18,69 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-InnerAPI</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Core</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-CoreBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<!-- Loggers -->
<dependency>
<groupId>org.primesoft.blockshub.loggers</groupId>
<artifactId>BlocksHub-Logger-CoreProtect</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub.loggers</groupId>
<artifactId>BlocksHub-Logger-LogBlock</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<!-- Accessord -->
<dependency>
<groupId>org.primesoft.blockshub.accessors</groupId>
<artifactId>BlocksHub-Accessor-Factions</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub.accessors</groupId>
<artifactId>BlocksHub-Accessor-GriefPrevention</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub.accessors</groupId>
<artifactId>BlocksHub-Accessor-WorldGuard</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions BlocksHub-Deploy-BukkitAPI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions BlocksHub-InnerAPI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions BlocksHub-Test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHub</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand All @@ -37,7 +37,7 @@
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand Down
6 changes: 3 additions & 3 deletions BlocksHub_Accessors/BlocksHub-Accessor-Factions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHubBukkitApi</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHubBukkitApi</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions BlocksHub_Accessors/BlocksHub-Accessor-WorldGuard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHubBukkitApi</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions BlocksHub_Loggers/BlocksHub-Logger-CoreProtect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHubBukkitApi</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions BlocksHub_Loggers/BlocksHub-Logger-LogBlock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@
<dependency>
<groupId>org.primesoft</groupId>
<artifactId>BlocksHubBukkitApi</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-Base</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-BaseBukkit</artifactId>
<version>[3.1.1, 4.0.0)</version>
<version>[3.2.0, 4.0.0)</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</repositories>

<properties>
<global.bh.version>3.1.1</global.bh.version>
<global.bh.version>3.2.0</global.bh.version>
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
</properties>

Expand Down

0 comments on commit 38588fd

Please sign in to comment.