You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the test I want to execute requires the introduction of multiple dependent jar packages, the command line must write - cp multiple times, which is too long. How can I put all dependent jar packages into one directory and execute them together?
When I put all jar packages in one directory, such as testlib, it will appear that the class cannot be found.
java -jar junit-platform-console-standalone-1.9.3.jar -cp test -cp testlib --scan-classpath --reports-dir=.
The text was updated successfully, but these errors were encountered:
When the test I want to execute requires the introduction of multiple dependent jar packages, the command line must write - cp multiple times, which is too long. How can I put all dependent jar packages into one directory and execute them together?
java -jar junit-platform-console-standalone-1.9.3.jar -cp test -cp .\commons-3.31.0.jar -cp .\abc-engine-0.1.0.jar -cp .\abc-formula-0.1.0.jar -cp .\antlr-runtime-3.2.jar --scan-classpath --reports-dir=.\
When I put all jar packages in one directory, such as testlib, it will appear that the class cannot be found.
java -jar junit-platform-console-standalone-1.9.3.jar -cp test -cp testlib --scan-classpath --reports-dir=.
The text was updated successfully, but these errors were encountered: