Hello,
I am trying to use a system property from a JUnit test:
System.getProperty("my.property");
In my gradle.properties have tried various combination of:
systemProp.microej.option.microej.java.property.my.property="value"
systemProp.microej.java.property.my.property="value"
systemProp.microej.option.my.property="value"
systemProp.my.property="value"
I tried the same from the build.gradle.kts (without the systemProp) but nothing worked.
What am I missing?
I use SDK6 1.4.0
Thanks