We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a7fc5d + 46c136f commit 8f1fd07Copy full SHA for 8f1fd07
.circleci/config.yml
@@ -116,6 +116,12 @@ commands:
116
echo "Skipping BOM publish for SNAPSHOT version $BOM_VERSION"
117
exit 0
118
fi
119
+ DEP_COUNT=$(grep -c '<artifactId>feign-' "$BOM_POM" || true)
120
+ if [ "$DEP_COUNT" -eq 0 ]; then
121
+ echo "ERROR: BOM has no feign dependencies, refusing to publish an empty BOM"
122
+ exit 1
123
+ fi
124
+ echo "BOM contains $DEP_COUNT feign dependencies"
125
STAGING_DIR=/tmp/bom-staging/io/github/openfeign/feign-bom/$BOM_VERSION
126
mkdir -p "$STAGING_DIR"
127
cp "$BOM_POM" "$STAGING_DIR/feign-bom-${BOM_VERSION}.pom"
0 commit comments