Compare commits
10 Commits
190c41ba90
...
renovate/s
Author | SHA1 | Date | |
---|---|---|---|
89fa19d9ad | |||
acd87f9741 | |||
7a482a2b7f | |||
9ce3f867d4 | |||
5af9d1099e | |||
abac8f6b57 | |||
94b9df0ec8 | |||
44a216c928 | |||
3eec5d30a6 | |||
fe2e19f953 |
@ -23,7 +23,7 @@ jobs:
|
||||
|
||||
# Setup Java and Maven
|
||||
- name: Set up JDK and Maven
|
||||
uses: s4u/setup-maven-action@v1.14.0
|
||||
uses: s4u/setup-maven-action@v1.15.0
|
||||
with:
|
||||
java-version: ${{ matrix.java-version }}
|
||||
distribution: "zulu"
|
||||
|
10
pom.xml
10
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>xyz.mcutils</groupId>
|
||||
<artifactId>mcutils-java-library</artifactId>
|
||||
<version>1.2.3</version>
|
||||
<version>1.2.4</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
@ -60,13 +60,13 @@
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
<version>6.1.10</version>
|
||||
<version>6.1.13</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents.client5</groupId>
|
||||
<artifactId>httpclient5</artifactId>
|
||||
<version>5.3.1</version>
|
||||
<version>5.4</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
@ -74,13 +74,13 @@
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<version>5.10.3</version>
|
||||
<version>5.11.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.10.3</version>
|
||||
<version>5.11.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -45,7 +45,7 @@ public class MinecraftServer {
|
||||
private GeoLocation location;
|
||||
|
||||
@Getter
|
||||
private static class MOTD {
|
||||
public static class MOTD {
|
||||
|
||||
/**
|
||||
* The raw motd lines
|
||||
@ -72,7 +72,7 @@ public class MinecraftServer {
|
||||
* Player count data for a server.
|
||||
*/
|
||||
@Getter
|
||||
private static class Players {
|
||||
public static class Players {
|
||||
/**
|
||||
* The online players on this server.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user