Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Commit df1621b

Browse files
committed
update dependencies, java 17, slimehud 1.3.0
1 parent 7448db0 commit df1621b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>me.schntgaispock.wildernether</groupId>
55
<artifactId>Wildernether</artifactId>
6-
<version>1.2.0</version>
6+
<version>1.2.1</version>
77

88
<properties>
9-
<maven.compiler.source>16</maven.compiler.source>
10-
<maven.compiler.target>16</maven.compiler.target>
9+
<maven.compiler.source>17</maven.compiler.source>
10+
<maven.compiler.target>17</maven.compiler.target>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
</properties>
1313

@@ -120,13 +120,13 @@
120120
<groupId>org.projectlombok</groupId>
121121
<artifactId>lombok</artifactId>
122122
<version>1.18.24</version>
123+
<scope>provided</scope>
123124
</dependency>
124125

125126
<dependency>
126127
<groupId>javax.annotation</groupId>
127128
<artifactId>javax.annotation-api</artifactId>
128129
<version>1.3.2</version>
129-
<scope>compile</scope>
130130
</dependency>
131131

132132
<dependency>
@@ -138,14 +138,14 @@
138138
<dependency>
139139
<groupId>org.bstats</groupId>
140140
<artifactId>bstats-bukkit</artifactId>
141-
<version>3.0.0</version>
141+
<version>3.0.2</version>
142142
<scope>compile</scope>
143143
</dependency>
144144

145145
<dependency>
146146
<groupId>com.github.schntgaispock</groupId>
147147
<artifactId>SlimeHUD</artifactId>
148-
<version>1.2.4</version>
148+
<version>1.3.0</version>
149149
<scope>provided</scope>
150150
</dependency>
151151
</dependencies>

src/main/java/me/schntgaispock/wildernether/integration/SlimeHUDSetup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class SlimeHUDSetup {
1111
public static void setup() {
1212

1313
SlimeHUD.getHudController().registerCustomHandler(BlackstoneStove.class, (HudRequest request) -> {
14-
return "&7| Mode: " + BlackstoneStove.getMode(request.getLocation());
14+
return "&7Mode: " + BlackstoneStove.getMode(request.getLocation());
1515
});
1616

1717
}

0 commit comments

Comments
 (0)