Skip to content

Commit f95d381

Browse files
authored
Update Example pom.xml to have the correct references (#342)
The Example maven module had a pom.xml with an incorrect dependency and also did not have the new hypixel repository linked to it, thus the module was unable to be used by people when trying to run the examples
1 parent 7c927b7 commit f95d381

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Example/pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@
2525
</plugins>
2626
</build>
2727

28+
<repositories>
29+
<repository>
30+
<id>Hypixel</id>
31+
<url>https://repo.hypixel.net/repository/Hypixel/</url>
32+
</repository>
33+
</repositories>
34+
2835
<dependencies>
2936
<dependency>
3037
<groupId>net.hypixel</groupId>
31-
<artifactId>Java</artifactId>
32-
<version>2.0.0</version>
38+
<artifactId>HypixelAPI</artifactId>
39+
<version>3.0.0</version>
3340
</dependency>
3441
</dependencies>
35-
36-
</project>
42+
</project>

0 commit comments

Comments
 (0)