We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As shown below:
-injars a.jar -injars lib\b.jar -injars lib\c.jar
-outjars a.jar(com/a/) -outjars lib\b.jar(com/xxx/module/b/) -outjars lib\c.jar(com/xxx/module/c/**)
At this point, the output b.jar and c.jar directories are missing. Before confusion occurs, you can use the following command to query:
jar tvf b.jar | findstr /i "com.xxx.module.demo"
After the outjars output is confused, the directory is gone. How do I keep the directory?
The following parameters are invalid -keepdirectories
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As shown below:
-injars a.jar
-injars lib\b.jar
-injars lib\c.jar
-outjars a.jar(com/a/)
-outjars lib\b.jar(com/xxx/module/b/)
-outjars lib\c.jar(com/xxx/module/c/**)
At this point, the output b.jar and c.jar directories are missing. Before confusion occurs, you can use the following command to query:
After the outjars output is confused, the directory is gone. How do I keep the directory?
The following parameters are invalid
-keepdirectories
The text was updated successfully, but these errors were encountered: