PickHaxe icon indicating copy to clipboard operation
PickHaxe copied to clipboard

Added `<mod-dependency />` to project.xml

Open Just-Feeshy opened this issue 6 months ago • 0 comments

The <mod-dependency /> tag would allow users to include custom APIs in their Minecraft mod using PickHaxe.

Preview example of how the tag works:

<!-- The project.xml -->
<mod-dependency value="./dependencies/mcutils.jar" externLib="true" />
<mod-dependency value="./dependencies/seedutils.jar" />
# The generated build.hxml
--java-lib-extern
./dependencies/mcutils.jar
--java-lib
./dependencies/seedutils.jar

Just-Feeshy avatar Dec 14 '23 15:12 Just-Feeshy