@@ -17,7 +17,7 @@ StructureBlockLib is a bukkit API and implementation for handling structures on
1717* API to save or load structures without an actual structure block.
1818* Asynchronous implementation and API.
1919* Fluent API.
20- * Version support 1.9.R1 - 1.20.R1
20+ * Version support 1.9.R1 - 1.20.R2
2121* Java support 8 - Latest
2222
2323## Installation
@@ -29,15 +29,15 @@ StructureBlockLib is a bukkit API and implementation for handling structures on
2929<dependency >
3030 <groupId >com.github.shynixn.structureblocklib</groupId >
3131 <artifactId >structureblocklib-bukkit-api</artifactId >
32- <version >2.11 .0</version >
32+ <version >2.12 .0</version >
3333 <scope >provided</scope >
3434</dependency >
3535```
3636** Gradle**
3737
3838``` xml
3939dependencies {
40- compileOnly("com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.11 .0")
40+ compileOnly("com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.12 .0")
4141}
4242```
4343
@@ -271,8 +271,8 @@ structureBlock.update();
271271** plugin.yml**
272272``` yaml
273273libraries :
274- - com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.11 .0
275- - com.github.shynixn.structureblocklib:structureblocklib-bukkit-core:2.11 .0
274+ - com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.12 .0
275+ - com.github.shynixn.structureblocklib:structureblocklib-bukkit-core:2.12 .0
276276` ` `
277277
278278### For version < 1.17
@@ -291,22 +291,22 @@ go with the option above instead. There are several tutorials on spigotmc.org.
291291<dependency>
292292 <groupId>com.github.shynixn.structureblocklib</groupId>
293293 <artifactId>structureblocklib-bukkit-api</artifactId>
294- <version>2.11 .0</version>
294+ <version>2.12 .0</version>
295295 <scope>compile</scope>
296296</dependency>
297297<dependency>
298298 <groupId>com.github.shynixn.structureblocklib</groupId>
299299 <artifactId>structureblocklib-bukkit-core</artifactId>
300- <version>2.11 .0</version>
300+ <version>2.12 .0</version>
301301 <scope>compile</scope>
302302</dependency>
303303```
304304** Gradle**
305305
306306``` xml
307307dependencies {
308- implementation("com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.11 .0")
309- implementation("com.github.shynixn.structureblocklib:structureblocklib-bukkit-core:2.11 .0")
308+ implementation("com.github.shynixn.structureblocklib:structureblocklib-bukkit-api:2.12 .0")
309+ implementation("com.github.shynixn.structureblocklib:structureblocklib-bukkit-core:2.12 .0")
310310}
311311```
312312
@@ -316,7 +316,7 @@ dependencies {
316316
317317* Install Java 17 or higher
318318* Fork the StructureBlockLib project on github and clone it to your local environment.
319- * StructureBlockLib requires spigot server implementations from 1.9.4 to 1.20 to be correctly installed in your local Maven cache.
319+ * StructureBlockLib requires spigot server implementations from 1.9.4 to 1.20.2 to be correctly installed in your local Maven cache.
320320 As this requires multiple java version to build different versions, a Dockerfile is provided to build these dependencies in a docker container
321321 and then copy it to your local Maven cache.
322322
0 commit comments