Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ jobs:
shell: bash
run: |
set -x
mvn -B -ntp compile -f java-cloud-bom/release-note-generation/pom.xml
mvn -B -ntp compile

GOOGLE_CLOUD_JAVA_VERSION=$(grep -A1 'gapic-libraries-bom' \
../google-cloud-bom/pom.xml |perl -nle 'print $1 if m/<version>(.+)</')
../google-cloud-bom/pom.xml |perl -nle 'print $1 if m/<version>([^<]+)</')

# This generates release_note.md file
mvn -B -ntp exec:java -f java-cloud-bom/release-note-generation/pom.xml \
mvn -B -ntp exec:java \
-Dlibraries-bom.version="${LIBRARIES_BOM_VERSION}" \
-Dgoogle-cloud-java.version="${GOOGLE_CLOUD_JAVA_VERSION}"
working-directory: java-cloud-bom/release-note-generation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ public class ReleaseNoteGeneration {
private static final String RELEASE_NOTE_FILE_NAME = "release_note.md";
private static final String GOOGLEAPIS_ORG = "googleapis";

private static final ImmutableSet<String> splitRepositoryLibraryNames =
ImmutableSet.of("bigtable", "firestore", "pubsub", "pubsublite");
private static final ImmutableSet<String> splitRepositoryLibraryNames = ImmutableSet.of();

private static boolean clientLibraryFilter(String coordinates) {
if (coordinates.contains("google-cloud-core")) {
Expand Down
Loading