Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Override a number of libraries to ensure we clear vulnerablities #365

Merged
merged 6 commits into from
Oct 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 27 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.4.3-SNAPSHOT</version>
<version>4.4.2.1-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>SpotBugs Maven Plugin</name>
Expand Down Expand Up @@ -87,7 +87,7 @@
</contributors>

<prerequisites>
<maven>3.2.5</maven>
<maven>3.3.9</maven>
</prerequisites>

<scm>
Expand Down Expand Up @@ -132,7 +132,9 @@
<doxiaSiteToolsVersion>1.10</doxiaSiteToolsVersion>

<mavenCoreVersion>3.8.3</mavenCoreVersion>
<mavenSharedUtilsVersion>3.3.4</mavenSharedUtilsVersion>
<mavenTransferVersion>0.13.1</mavenTransferVersion>
<mavenCommonArtifactFilters>3.2.0</mavenCommonArtifactFilters>
<mavenReportingApiVersion>3.0</mavenReportingApiVersion>
<mavenReportingVersion>3.0.0</mavenReportingVersion>
<mavenVersion>3.8.3</mavenVersion>
Expand All @@ -151,7 +153,7 @@
<pluginPluginVersion>3.6.1</pluginPluginVersion>
<scmPluginVersion>1.12.0</scmPluginVersion>
<sitePluginVersion>3.9.1</sitePluginVersion>
<sitePlugin36Version>3.6</sitePlugin36Version> <!-- For MFINDBUGS-145 (breaks on newer jdks, revisit this on spotbugs 4.3.x and simply drop the old support) -->
<sitePlugin36Version>3.6</sitePlugin36Version> <!-- For MFINDBUGS-145 (breaks on newer jdks, revisit this on spotbugs 4.5.x and simply drop the old support) -->
<versionsPluginVersion>2.8.1</versionsPluginVersion>

<spotbugsTestDebug>false</spotbugsTestDebug>
Expand Down Expand Up @@ -185,6 +187,7 @@
<collections.version>3.2.2</collections.version>
<digester.version>2.1</digester.version>
<io.version>2.11.0</io.version>
<lang2.version>2.6</lang2.version>
<lang3.version>3.12.0</lang3.version>
</properties>

Expand Down Expand Up @@ -384,18 +387,28 @@
<artifactId>maven-artifact-transfer</artifactId>
<version>${mavenTransferVersion}</version>
<exclusions>
<exclusion>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
</exclusion>
<exclusion>
<groupId>org.sonatype.sisu</groupId>
<artifactId>sisu-guice</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-common-artifact-filters</artifactId>
<version>${mavenCommonArtifactFilters}</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenCoreVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>${mavenSharedUtilsVersion}</version>
</dependency>

<!-- doxia -->
<dependency>
Expand Down Expand Up @@ -445,8 +458,8 @@
<artifactId>struts-core</artifactId>
</exclusion>
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
Expand Down Expand Up @@ -503,6 +516,11 @@
<artifactId>commons-io</artifactId>
<version>${io.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${lang2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down