gpt4 book ai didi

java - 如何将 java rxtx 库包含到我的 Minecraft mod 中?

转载 作者:行者123 更新时间:2023-11-30 07:15:07 25 4
gpt4 key购买 nike

你如何将rxtx dll包含在minecraft forge mod中我对rxtxcomm.jar文件没有任何问题,但我无法将根文件夹包含在类路径中(像平常一样),因为这样游戏就不会因为重复而启动mod(我目前正在使用 eclipse)

最佳答案

在你的 build.gradle 中:

dependencies {
// create a directory called libs in the directory where the build.gradle is
compile fileTree(dir: 'libs', include: '*.jar')
}
jar {
// make in the directory where the build.gradle is a native folder
// and put your dll's there.
from('native') {
into('org/sqlite/native')
}
}
processResources
{
//... add this below what's already there under process resources.
copy {
from('/native')
into('/org/sqlite/native')
}
}

这种东西的组合可以让我将 sqlite jar 和 dll 添加到我的 cookies jar 中。

关于java - 如何将 java rxtx 库包含到我的 Minecraft mod 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38547195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com