Skip to content

Commit 2497e78

Browse files
authored
version 4.2.3 (#45)
* fix: expose api (#44) * feat: update
1 parent 157fae5 commit 2497e78

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ repositories {
5151
}
5252
5353
dependencies {
54-
implementation 'com.github.Traqueur-dev.CommandsAPI:platform-spigot:4.0.0' // or platform-velocity
54+
implementation 'com.github.Traqueur-dev.CommandsAPI:platform-spigot:[version]' // or platform-velocity
5555
}
5656
```
5757

@@ -69,7 +69,7 @@ dependencies {
6969
<dependency>
7070
<groupId>com.github.Traqueur-dev.CommandsAPI</groupId>
7171
<artifactId>platform-spigot</artifactId> <!-- or platform-velocity -->
72-
<version>4.0.0</version>
72+
<version>[version]</version>
7373
</dependency>
7474
</dependencies>
7575
```
@@ -135,7 +135,7 @@ This allows support for new platforms like Fabric, Minestom, or BungeeCord.
135135
To publish locally for development:
136136

137137
```bash
138-
./gradlew core:publishToMavenLocal platform-spigot:publishToMavenLocal platform-velocity:publishToMavenLocal
138+
./gradlew core:publishToMavenLocal spigot:publishToMavenLocal velocity:publishToMavenLocal
139139
```
140140

141141
---

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=4.2.2
1+
version=4.2.3

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

spigot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

1616
dependencies {
17-
implementation project(":core")
17+
api project(":core")
1818
compileOnly "org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT"
1919
testImplementation ("org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT")
2020
}

velocity/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ repositories {
1515
}
1616

1717
dependencies {
18-
implementation project(":core")
18+
api project(":core")
1919
compileOnly("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
2020
annotationProcessor("com.velocitypowered:velocity-api:3.4.0-SNAPSHOT")
2121
}
2222

2323
java {
24+
sourceCompatibility = JavaVersion.VERSION_21
25+
targetCompatibility = JavaVersion.VERSION_21
2426
withSourcesJar()
2527
withJavadocJar()
2628
}

0 commit comments

Comments
 (0)