-
I'ld like to provide system properties. how can i do this? Logically i'd like to do: mill -Dlogback.configurationFile=${CI_PROJECT_DIR}/bin/logback-ci.xml -j 0 __.test |
Beta Was this translation helpful? Give feedback.
Answered by
lefou
Jun 17, 2021
Replies: 2 comments 7 replies
-
If you are in Linux, try something like: JAVA_OPTS="-DsocksProxyHost=127.0.0.1 -DsocksProxyPort=1080 -DsocksProxyVersion=5" mill -i core.console ss indicate here. HTHs |
Beta Was this translation helpful? Give feedback.
2 replies
-
Use
Notice the space between the option and its argument. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
lefou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
-D
or--define
option:Notice the space between the option and its argument.