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

fix(deps): update all #1171

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'org.ajoberstar.grgit' version '5.2.2'
id "com.github.ben-manes.versions" version '0.51.0'
id 'ru.vyarus.mkdocs' version '3.0.0'
id "com.github.spotbugs" version "6.0.9"
id "com.github.spotbugs" version "6.0.12"
id 'com.diffplug.spotless' version '6.25.0'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
Expand Down Expand Up @@ -48,7 +48,7 @@ dependencies {
implementation "org.apache.commons:commons-text:${commonTextVersion}"
api "com.commercetools.sdk:commercetools-sdk-java-api:${commercetoolsJavaSdkV2Version}"
api 'commons-io:commons-io:2.16.1'
api 'commons-codec:commons-codec:1.16.1'
api 'commons-codec:commons-codec:1.17.0'
api 'com.google.code.findbugs:annotations:3.0.1'
api 'com.neovisionaries:nv-i18n:1.29'
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoJunitJupiterVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.commercetools.api.models.customer.CustomerSetCustomTypeActionBuilder;
import com.commercetools.api.models.customer.CustomerUpdateAction;
import com.commercetools.sync.commons.helpers.GenericCustomActionBuilder;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
Expand All @@ -18,6 +19,7 @@ private CustomerCustomActionBuilder() {
}

@Nonnull
@SuppressFBWarnings
public static CustomerCustomActionBuilder of() {
return builder;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static SyncFilter ofBlackList(@Nonnull final ActionGroup... actionGroups)
}

@Nonnull
public static SyncFilter of() {
public static synchronized SyncFilter of() {
defaultSyncFilter = ofNullable(defaultSyncFilter).orElseGet(SyncFilter::new);
return defaultSyncFilter;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.commercetools.api.models.shopping_list.ShoppingListSetCustomTypeActionBuilder;
import com.commercetools.api.models.shopping_list.ShoppingListUpdateAction;
import com.commercetools.sync.commons.helpers.GenericCustomActionBuilder;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
Expand All @@ -19,6 +20,7 @@ private ShoppingListCustomActionBuilder() {
}

@Nonnull
@SuppressFBWarnings
public static ShoppingListCustomActionBuilder of() {
return builder;
}
Expand Down
Loading