-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
> Anyway, you can try with the latest version: 1.7.6. maybe your issue is already solved. #439
Comments
Hi @fubb-github! |
This is my packaging error message:
|
Hi @fubb-github ! |
Oh! you also can try this snapshot version: |
After using version 1.7.7-snapshot, the same error still persists |
Please, could you share Maven execution output? BTW, if you are in a hurry and can't wait, you can set |
Thank you for you reply,this is my packaging error message: [INFO] Bundling JRE ... with D:\JDK\jdk17\jdk-17.0.7 |
Hi @fubb-github! D:\JDK\jdk17\jdk-17.0.7\bin\jdeps -q --multi-release 17 --ignore-missing-deps --print-module-deps --add-modules=ALL-MODULE-PATH --module-path=D:\IDEA\workspace\protocol-vpn\kdew-protocol-vpn-client\target\kdew-protocol-vpn-client-1.0-SNAPSHOT-runnable.jar;D:\IDEA\workspace\protocol-vpn\kdew-protocol-vpn-client\target\udun\libs D:\IDEA\workspace\protocol-vpn\kdew-protocol-vpn-client\target\udun\libs D:\IDEA\workspace\protocol-vpn\kdew-protocol-vpn-client\target\kdew-protocol-vpn-client-1.0-SNAPSHOT-runnable.jar |
Ok, forgot last comment, I've just seen the error message:
I've been researching a little bit about this issue, and it seems to be caused by netty ... 2 modules are exporting the same package. AFAIK, it's not caused by JP, but you can try to do this: <dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>{VERSION}</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-xml</artifactId>
</exclusion>
</exclusions>
</dependency> |
|
I have tried to remove it, but it still reports this type of error. Using version 1.7.5 does not have this problem |
I am using version 1.7.6 for packaging, but I cannot start after installing the deb package
Originally posted by @fubb-github in #393 (comment)
The text was updated successfully, but these errors were encountered: