的Maven允許激活基於其上運行的操作系統家族的某些創建個人資料,例如:值在Maven的配置文件的激活條件os.family
<profile>
<activation>
<os><family>Windows</family></os>
</activation>
</profile>
有許多解決這個問題:什麼是否允許os.family
的值?他們是否區分大小寫? Linux遇到Unix
?或者unix
?等等。
我在哪裏可以找到有關允許值–的信息,或者至少,Maven從哪裏獲取這些值?環境變量?
這也是[推薦方式(HTTP://maven.apache .org/guides/introduction/introduction-to-profiles.html),它鏈接到[此執行者插件頁面](http://maven.apache.org/enforcer/enforcer-rules/requireOS.html)。 –