Skip to content

Commit

Permalink
Merge pull request #373 from dwnusbaum/JENKINS-71715
Browse files Browse the repository at this point in the history
[JENKINS-71715] Update minimum supported Jenkins version to 2.440 to be able to use new `ConsoleUrlProvider` API to link to Pipeline build console page
  • Loading branch information
jglick authored Jan 29, 2024
2 parents b7d80f4 + 6fe2fd0 commit 7fd111b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</pluginRepositories>
<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.414</jenkins.version>
<jenkins.version>2.440</jenkins.version>
<no-test-jar>false</no-test-jar>
<useBeta>true</useBeta>
<hpi.compatibleSinceVersion>2.26</hpi.compatibleSinceVersion>
Expand All @@ -73,8 +73,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.414.x</artifactId>
<version>2643.vfa_93ff299d20</version>
<artifactId>bom-2.440.x</artifactId>
<version>2746.vb_79a_1d3e7b_c8</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
<l:task icon="symbol-code-slash-outline plugin-ionicons-api" href="${buildUrl.baseUrl}/changes" title="${%Changes}"/>
<j:choose> <!-- TODO <p:console-link/> may not currently be used as it calls getLogFile -->
<j:when test="${it.logText.length() > 200000}">
<l:task href="${buildUrl.baseUrl}/console" icon="symbol-terminal-outline plugin-ionicons-api" title="${%Console Output}"/>
<l:task href="${h.getConsoleUrl(it)}" icon="symbol-terminal-outline plugin-ionicons-api" title="${%Console Output}"/>
<l:task href="${buildUrl.baseUrl}/consoleText" icon="symbol-document-text-outline plugin-ionicons-api" title="${%View as plain text}"/>
</j:when>
<j:otherwise>
<l:task icon="symbol-terminal-outline plugin-ionicons-api" href="${buildUrl.baseUrl}/console" title="${%Console Output}">
<l:task icon="symbol-terminal-outline plugin-ionicons-api" href="${h.getConsoleUrl(it)}" title="${%Console Output}">
<l:task href="${buildUrl.baseUrl}/consoleText" icon="symbol-document-text-outline plugin-ionicons-api" title="${%View as plain text}"/>
</l:task>
</j:otherwise>
Expand Down

0 comments on commit 7fd111b

Please sign in to comment.