gpt4 book ai didi

windows - Packr 不工作

转载 作者:可可西里 更新时间:2023-11-01 11:53:24 26 4
gpt4 key购买 nike

我想导出我的 LibGDX 游戏,但是当我尝试使用此配置运行 packr 时:

{
"platform": "windows",
"jdk": "openjdk-1.7.0-u45-unofficial-icedtea-2.4.3-windows-i586-image.zip",
"executable": "LibGDX",
"appjar": "LibGDX5.jar",
"mainclass": "cz/vilix/main/Desktop",
"vmargs": [
"-Xmx1G"
],
"resources": [

],
"minimizejre": "soft",
"outdir": "out"
}

我在控制台中得到这个输出:

Console output

但一切似乎都已到位:

Required files

我在“out”目录中得到以下输出(显然,运行 42KB 的 exe 文件不起作用):

Out folder

这是 .jar 文件的内容:

Content of jar

我认为它可能由于未指定 res 文件夹而无法正常工作,但我不知道如何修复它。

更新:

我尝试创建一个新的 xml 文件 pom.xml,其中包含:

<dependency>
<groupId>com.badlogicgames.packr</groupId>
<artifactlId>packr</artifactlId>
<version>1.1</version>
</dependency>

更改了 config.json 以包含此内容:

"resources": [
"pom.xml"
],

输出文件夹看起来一样,除了包含 pom.xml 文件。现在我也收到了这个错误:

New error

最佳答案

有很多问题..

slf4j 库将来自 pom.xml 的 Maven 依赖

pom.xml 看起来像

<dependency>
<groupId>com.badlogicgames.packr</groupId>
<artifactlId>packr</artifactlId>
<version>1.1</version>
</dependency>

如果您查看 Packr 自述文件,您会注意到您在调用 JAR 或设置为配置时指定了 pom.xml

java -jar packr.jar .... -resources pom.xml ...

或者在 config.json 中

{

...
...

"resources": ["pom.xml"],

...
}

阅读自述文件并按照它来解决问题 https://github.com/libgdx/packr

关于windows - Packr 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23720501/

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