Skip to content

Commit

Permalink
fix(build): upgrade dependencies
Browse files Browse the repository at this point in the history
Upgraded japicmp-maven-plugin.version, japicmp-maven-plugin.version, and spotbugs.version.
  • Loading branch information
joviegas committed May 7, 2024
1 parent 5038736 commit a4f9b54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bom-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.42</version>
<version>10.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.42</version>
<version>10.16.0</version>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<checkstyle.version>8.42</checkstyle.version>
<checkstyle.version>10.16.0</checkstyle.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<build-helper-maven-plugin.version>3.3.0</build-helper-maven-plugin.version>
<japicmp-maven-plugin.version>0.15.6</japicmp-maven-plugin.version>
<japicmp-maven-plugin.version>0.21.2</japicmp-maven-plugin.version>
<versions-maven-plugin.version>2.13.0</versions-maven-plugin.version>
<maven-archetype-plugin.version>3.2.1</maven-archetype-plugin.version>
<!-- Whenever we update maven-wrapper-plugin version, we need to run mvn wrapper:wrapper to update the Maven Wrapper files(mvnw, .maven and mvnw.cmd) -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ public static String replacePrefixIgnoreCase(String str, String prefix, String r
* @param charsToMatch A list of characters to search the string for.
* @return The character that was first matched in the string or null if none of the characters were found.
*/
public static Character findFirstOccurrence(String s, char ...charsToMatch) {
public static Character findFirstOccurrence(String s, char... charsToMatch) {
int lowestIndex = Integer.MAX_VALUE;

for (char toMatch : charsToMatch) {
Expand Down

0 comments on commit a4f9b54

Please sign in to comment.