7
我正在尋找將環境變量傳遞到貨物集裝箱的方法。事情是這樣的:將自定義環境變量傳遞給maven貨物
<plugin>
<groupId>org.codehaus.cargo>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<environmentVariables>
<myCustomVariable>value</myCustomVariable>
...
我試過這個,但它沒有與glassfish 4一起工作。我總是將該屬性設置爲null。要在java代碼中檢索屬性,請使用:System.getenv(「myproperty」)。我也試過System.getProperty(「myproperty」),但那也沒有用。 – vanval 2016-09-07 20:04:29