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

chore: consolidate configuration in google-cloud-pom-parent and google-cloud-jar-parent #8521

Merged
merged 54 commits into from
Oct 12, 2022
Merged
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
0690a6e
chore: add script to remove shared deps from modules
meltsufin Oct 5, 2022
cb51f57
chore: remove shared-dependencies and junit dependencyManagement from…
meltsufin Oct 5, 2022
b514547
chore: add non release-please versions check
meltsufin Oct 5, 2022
70c1dad
chore: restrict reonvate to only root pom.xml
meltsufin Oct 5, 2022
92db694
chore: .gitignore tweak
meltsufin Oct 5, 2022
1370a60
Merge branch 'main' into update-versions
meltsufin Oct 5, 2022
a8141b6
chore: update set_parent_pom.sh to remove parent from boms
meltsufin Oct 5, 2022
fdff9be
chore: remove parent from boms
meltsufin Oct 5, 2022
5025e98
Revert "chore: remove parent from boms"
meltsufin Oct 6, 2022
91bd647
chore: split parent into aggregator and parent
meltsufin Oct 6, 2022
85a605b
chore: apply set_parent_pom.sh
meltsufin Oct 7, 2022
a680cc4
Merge branch 'main' into update-versions
meltsufin Oct 7, 2022
d3dd698
chore: apply set_parent_pom.sh
meltsufin Oct 7, 2022
336114e
chore: fix CoverageAggregator
meltsufin Oct 7, 2022
d55b6fe
chore: organzie into pom-parent and jar-parent
meltsufin Oct 7, 2022
e37350c
chore: fix parent pom sync
meltsufin Oct 8, 2022
d589559
chore: fix bom generation script
meltsufin Oct 8, 2022
d7a077b
chore: coverage pom template fix
meltsufin Oct 8, 2022
ed0566a
chore: fix parent version
meltsufin Oct 8, 2022
01e7b94
chore: more config consolidation to parent
meltsufin Oct 8, 2022
fd77b45
chore: improve set_parent_pom.sh
meltsufin Oct 8, 2022
951885a
chore: update renovate.json
meltsufin Oct 8, 2022
71803c6
chore: make junit a dependency in jar parent
meltsufin Oct 9, 2022
9a4f814
chore: cleanup samples poms
meltsufin Oct 9, 2022
a72cb67
chore: regen release please config
meltsufin Oct 9, 2022
32891d5
chore: fix typos
meltsufin Oct 9, 2022
fc409fb
chore: consolidate truth and joda-time
meltsufin Oct 9, 2022
1069752
chore: remove nexus-staging-maven-plugin
meltsufin Oct 9, 2022
fa02b32
chore: remove easymock
meltsufin Oct 9, 2022
5265eca
chore: do not exclude objenesis
meltsufin Oct 9, 2022
2d11c29
Merge branch 'main' into update-versions
meltsufin Oct 10, 2022
600b2ef
chore: update apikes and publicca
meltsufin Oct 10, 2022
0f84333
chore: consolidate only dependency management to parent
meltsufin Oct 10, 2022
896ffbc
chore: simply manage junit version in parent
meltsufin Oct 10, 2022
0fec51b
chore: restore deps accidentally being removed
meltsufin Oct 10, 2022
05d038c
Merge branch 'main' into update-versions
meltsufin Oct 10, 2022
7b7c248
chore: sync with main
meltsufin Oct 10, 2022
d1930cb
chore: chore more cleanup of versions
meltsufin Oct 10, 2022
5c7d4e2
chore: move pubsub bom import to parent
meltsufin Oct 11, 2022
f25a2dd
chore: a few more
meltsufin Oct 11, 2022
f79a194
chore: translate dep fix
meltsufin Oct 11, 2022
e3989af
chore: cleanup grafeas deps
meltsufin Oct 11, 2022
0f67046
chore: add version annotations where needed
meltsufin Oct 11, 2022
821edcf
chore: remove Java 11 setting
meltsufin Oct 11, 2022
6e2e0e0
Merge branch 'main' into update-versions
meltsufin Oct 11, 2022
0845f6b
chore: set suztomo as the developer for maven central
meltsufin Oct 11, 2022
d5be52e
chore: update bom template
meltsufin Oct 11, 2022
b2a8e75
chore: apply version updates
meltsufin Oct 11, 2022
85e46db
Merge branch 'main' into update-versions
meltsufin Oct 11, 2022
68fa32b
chore: remove unnecessary build section in parent pom
meltsufin Oct 11, 2022
512f907
chore: add Repository Structure documentation
meltsufin Oct 11, 2022
6f94bfa
chore: rename google-cloud-gapic-bom to gapic-libraries-bom
meltsufin Oct 11, 2022
0e14e1c
Merge branch 'main' into update-versions
meltsufin Oct 12, 2022
d54f737
chore: fix generate_release_please_config.sh
meltsufin Oct 12, 2022
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
Prev Previous commit
Next Next commit
chore: fix bom generation script
  • Loading branch information
meltsufin committed Oct 8, 2022
commit d58955970453f2b626eba1eb383d2c016f5cf7c9
2 changes: 1 addition & 1 deletion generation/generate_gapic_bom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ for module in $(find . -mindepth 2 -maxdepth 2 -name pom.xml |sort --dictionary-
if ls ${module}/*-bom 1> /dev/null 2>&1; then
continue
fi
if [[ "${module}" = *google-cloud-gapic-bom ]] || [[ "${module}" = *CoverageAggregator ]]; then
if ! test -f "${module}/.repo-metadata.json"; then
continue
fi

Expand Down