Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ updates:
open-pull-requests-limit: 1
schedule:
interval: "daily"
ignore:
- dependency-name: "org.webjars.*"

- package-ecosystem: 'gradle'
directory: 'functionaltest-jenkins-plugin/'
Expand Down
15 changes: 9 additions & 6 deletions stackrox-container-image-scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<properties>
<jenkins.version>2.164.1</jenkins.version>
<java.level>8</java.level>
<jquery.version>3.4.1</jquery.version>
<datatables.version>1.10.20</datatables.version>
<bootstrap.version>4.4.1</bootstrap.version>
Comment thread
janisz marked this conversation as resolved.
</properties>
<name>StackRox Container Image Scanner</name>
<description>This plugin provides vulnerability scanning of container images for OS packages and language
Expand Down Expand Up @@ -254,21 +257,21 @@
<artifactItem>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>3.7.1</version>
<version>${jquery.version}</version>
<includes>**/jquery*.min.js</includes>
</artifactItem>
<artifactItem>
<groupId>org.webjars</groupId>
<artifactId>datatables</artifactId>
<version>2.1.0</version>
<version>${datatables.version}</version>
<includes>
**/jquery.dataTables.min.js,**/dataTables.bootstrap.min.js,**/dataTables.bootstrap.min.css,**/fonts/*
</includes>
</artifactItem>
<artifactItem>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.3.3</version>
<version>${bootstrap.version}</version>
<includes>**/bootstrap.min.css,**/bootstrap.min.js,**/fonts/*</includes>
</artifactItem>
</artifactItems>
Expand All @@ -294,17 +297,17 @@
<resources>
<resource>
<directory>
${project.build.directory}/webjars/META-INF/resources/webjars/jquery/3.4.1
${project.build.directory}/webjars/META-INF/resources/webjars/jquery/${jquery.version}
</directory>
</resource>
<resource>
<directory>
${project.build.directory}/webjars/META-INF/resources/webjars/datatables/1.10.20
${project.build.directory}/webjars/META-INF/resources/webjars/datatables/${datatables.version}
</directory>
</resource>
<resource>
<directory>
${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/4.4.1
${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${bootstrap.version}
</directory>
</resource>
<!-- also copy existing resources to use them in the HPL for testing -->
Expand Down
Loading