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 8, 2024
1 parent 5038736 commit a07e038
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@

<modelVersion>4.0.0</modelVersion>

<properties>
<!-- Specify the Java version -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<groupId>software.amazon.awssdk</groupId>
<artifactId>build-tools</artifactId>
<version>1.0</version>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<sqllite.version>1.0.392</sqllite.version>
<blockhound.version>1.0.8.RELEASE</blockhound.version>
<jetty.version>9.4.45.v20220203</jetty.version>
<bytebuddy.version>1.14.8</bytebuddy.version>
<bytebuddy.version>1.14.15</bytebuddy.version>

<!-- build plugin dependencies-->
<maven.surefire.version>3.1.2</maven.surefire.version>
Expand All @@ -156,7 +156,7 @@
<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 @@ -87,7 +87,7 @@ public static void main(String[] args) {
new CreateNewServiceModuleMain().run(args);
}

static Set<String> toSet(String...args) {
static Set<String> toSet(String... args) {
Set<String> result = new LinkedHashSet<>();
for (String arg : args) {
result.add(arg);
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 a07e038

Please sign in to comment.