我正在嘗試使用以下代碼使用maven pom.xml
讀取Jenkins數字。問題在於,構建失敗了,因爲我已經在下面指定了錯誤。我提到了Jenkins給出的官方文件Building a software project。如果我嘗試使用任何文本而不是${BUILD_NUMBER}
,它會在控制檯中打印,但不會顯示變量。如何使用maven獲取Jenkins內部版本號
POM資料參考:
<profiles>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<build.number>${BUILD_NUMBER}</build.number>
</properties>
</profile>
</profiles>
POM系統屬性:
<systemPropertyVariables>
<buildnumber>${build.number}</buildnumber>
</systemPropertyVariables>
請讓我知道,如果我做錯了什麼。
試試'$ {env.BUILD_NUMBER}' – 2014-09-03 18:28:52