Skip to content

Commit

Permalink
feat: Switch to ionicons API (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Sep 14, 2022
1 parent bacb3e8 commit bc67e07
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
9 changes: 4 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: '11'],
[platform: 'windows', jdk: '11'],
[platform: 'linux', jdk: '17', jenkins: '2.342'],
])
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: '11'],
[platform: 'linux', jdk: '17']
])
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,25 @@ THE SOFTWARE.
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.319.x</artifactId>
<artifactId>bom-2.346.x</artifactId>
<version>1607.va_c1576527071</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>ionicons-api</artifactId>
<version>24.va_745a_b_a_97fc3</version>
</dependency>
</dependencies>

<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.319.3</jenkins.version>
<jenkins.version>2.346.1</jenkins.version>
</properties>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
-->

<?jelly escape-by-default='false'?>
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout" xmlns:f="/lib/form">
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout">
<l:hasPermission permission="${app.ADMINISTER}">
<l:task icon="icon-edit-delete icon-md" confirmationMessage="${%Purge the build queue?}" href="purge-build-queue/purge/" post="true" requiresConfirmation="true" title="${%Purge Build Queue}" permissions="${it.ADMINISTER}">
<l:task icon="symbol-trash-outline plugin-ionicons-api" confirmationMessage="${%Purge the build queue?}"
href="purge-build-queue/purge/" post="true" requiresConfirmation="true"
title="${%Purge Build Queue}" permissions="${it.ADMINISTER}">
</l:task>
</l:hasPermission>
</j:jelly>

0 comments on commit bc67e07

Please sign in to comment.