Skip to content

Commit

Permalink
Merge pull request #94 from chali/ExcludeProtolocConfiguration
Browse files Browse the repository at this point in the history
Exclude protoloc configuration from recommendations, configuration is add by protobuf plugin and is resolved sooner then recommendation is provided
  • Loading branch information
chali authored Oct 25, 2018
2 parents 0f586cd + a6709b2 commit b3d7519
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/buildViaTravis.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# This script will build the project.

SWITCHES="--info --stacktrace --parallel --scan"
SWITCHES="--info --stacktrace --parallel"

GRADLE_VERSION=$(./gradlew -version | grep Gradle | cut -d ' ' -f 2)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void apply(final Project project) {
if (CORE_BOM_SUPPORT_ENABLED) {
logger.warn("coreBomSupport feature enabled");
recommendationProviderContainer.excludeConfigurations("archives", NEBULA_RECOMMENDER_BOM, "provided",
"versionManagement", "resolutionRules", "bootArchives", "webapp");
"versionManagement", "resolutionRules", "bootArchives", "webapp", "protolock");
bomConfiguration.setCanBeResolved(false);
applyRecommendationsDirectly(project, bomConfiguration);
} else {
Expand Down

0 comments on commit b3d7519

Please sign in to comment.