Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 3c3d166

Browse files
author
Shynixn
committed
#114 Updated version.
1 parent ce6e3ac commit 3c3d166

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN ./gradlew build pluginJar --no-daemon
4848
# 4. Launch a minecraft server with jdk17 and plugin
4949
FROM amazoncorretto:17
5050
# Change to the current plugin version present in build.gradle
51-
ENV PLUGIN_VERSION=2.11.0
51+
ENV PLUGIN_VERSION=2.12.0
5252
# Change to the server version you want to test.
5353
ENV SERVER_VERSION=spigot-1.19.4.jar
5454
# Port of the Minecraft Server.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016-2022 Shynixn
3+
Copyright (c) 2016-2024 Shynixn
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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
3939
dependencies {
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
273273
libraries:
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
307307
dependencies {
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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tasks.register("printVersion") {
4444

4545
subprojects {
4646
group 'com.github.shynixn.structureblocklib'
47-
version '2.11.0'
47+
version '2.12.0'
4848

4949
apply plugin: 'kotlin-platform-jvm'
5050
apply plugin: 'signing'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: StructureBlockLib
2-
version: 2.11.0
2+
version: 2.12.0
33
author: Shynixn
44
main: com.github.shynixn.structureblocklib.bukkit.plugin.StructureBlockLibPlugin

structureblocklib-bukkit-sample/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: StructureBlockLibSample
2-
version: 2.11.0
2+
version: 2.12.0
33
author: Shynixn
44
main: com.github.shynixn.structureblocklib.bukkit.plugin.StructureBlockLibSamplePlugin
55
commands:

0 commit comments

Comments
 (0)