Compare commits
12 Commits
24770bf2a9
...
renovate/j
Author | SHA1 | Date | |
---|---|---|---|
ade359b92d | |||
acd87f9741 | |||
7a482a2b7f | |||
9ce3f867d4 | |||
5af9d1099e | |||
abac8f6b57 | |||
94b9df0ec8 | |||
44a216c928 | |||
3eec5d30a6 | |||
fe2e19f953 | |||
190c41ba90 | |||
3c7ba27953 |
10
pom.xml
10
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>xyz.mcutils</groupId>
|
||||
<artifactId>mcutils-java-library</artifactId>
|
||||
<version>1.2.2</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.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-api</artifactId>
|
||||
<version>5.10.3</version>
|
||||
<version>5.11.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -44,8 +44,8 @@ public class MinecraftServer {
|
||||
*/
|
||||
private GeoLocation location;
|
||||
|
||||
@AllArgsConstructor @Getter
|
||||
private static class MOTD {
|
||||
@Getter
|
||||
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.
|
||||
*/
|
||||
@ -108,31 +108,31 @@ public class MinecraftServer {
|
||||
/**
|
||||
* The location of the server.
|
||||
*/
|
||||
@AllArgsConstructor @Getter
|
||||
@Getter
|
||||
public static class GeoLocation {
|
||||
/**
|
||||
* The country of the server.
|
||||
*/
|
||||
private final String country;
|
||||
private String country;
|
||||
|
||||
/**
|
||||
* The region of the server.
|
||||
*/
|
||||
private final String region;
|
||||
private String region;
|
||||
|
||||
/**
|
||||
* The city of the server.
|
||||
*/
|
||||
private final String city;
|
||||
private String city;
|
||||
|
||||
/**
|
||||
* The latitude of the server.
|
||||
*/
|
||||
private final double latitude;
|
||||
private double latitude;
|
||||
|
||||
/**
|
||||
* The longitude of the server.
|
||||
*/
|
||||
private final double longitude;
|
||||
private double longitude;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user