diff --git a/.github/workflows/generated_files_sync.yaml b/.github/workflows/generated_files_sync.yaml index 5d33face1e9b..86247d0a35af 100644 --- a/.github/workflows/generated_files_sync.yaml +++ b/.github/workflows/generated_files_sync.yaml @@ -74,4 +74,13 @@ jobs: bash generation/generate_coverage_aggregator.sh - name: Fail if there's any difference run: git --no-pager diff --exit-code - + owlbot-py: + name: applying templated owlbot.py config doesn't create a diff + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Generate google-cloud-gapic-bom/pom.xml + run: | + bash generation/update_owlbot_postprocessor_config.sh + - name: Fail if there's any difference + run: git --no-pager diff --exit-code diff --git a/generation/bootstrap.sh b/generation/bootstrap.sh index b9ff70804590..a4625696f718 100755 --- a/generation/bootstrap.sh +++ b/generation/bootstrap.sh @@ -90,12 +90,6 @@ git commit -am 'chore: create google-cloud-gapic-bom' cp ../../gapic_bom_versions.txt google-cloud-gapic-bom/versions.txt -# Generate Release Please configuration files -bash ../../generate_release_please_config.sh - -git add --all -git commit -am 'chore: create release please configuration' - ../../generate_coverage_aggregator.sh git add --all @@ -111,6 +105,12 @@ git commit -am 'chore: delete non-auto-generated samples' git add --all git commit -am 'chore: update versions to latest in maven' +# Generate Release Please configuration files +bash ../../generate_release_please_config.sh + +git add --all +git commit -am 'chore: create release please configuration' + ../../update_owlbot_postprocessor_config.sh git add --all diff --git a/generation/update_owlbot_postprocessor_config.sh b/generation/update_owlbot_postprocessor_config.sh index c8a337322360..ed386d8a3943 100755 --- a/generation/update_owlbot_postprocessor_config.sh +++ b/generation/update_owlbot_postprocessor_config.sh @@ -12,12 +12,12 @@ for dir in $(find . -mindepth 2 -maxdepth 2 -name owlbot.py | sort | xargs dirna # form a perl command to replace java.common_templates() invocation perl_command='s/java\.common_templates\(.*\)/java.common_templates(excludes=[' comma="" - for exclusion in '.github/*' '.kokoro/*' '.samples/*' 'CODE_OF_CONDUCT.md' 'CONTRIBUTING.md' 'LICENSE' 'SECURITY.md' 'java.header' 'license-checks.xml' 'renovate.json'; do + for exclusion in '.github/*' '.kokoro/*' 'samples/*' 'CODE_OF_CONDUCT.md' 'CONTRIBUTING.md' 'LICENSE' 'SECURITY.md' 'java.header' 'license-checks.xml' 'renovate.json'; do perl_command+="${comma}\n $(echo "\"${exclusion}\"" | sed 's/\//\\\//g')" comma="," # delete files and directories - if [[ ${exclusion: -2} == '/*' ]]; then + if [[ ${exclusion: -2} == '/*' && ${exclusion%??} != 'samples' ]]; then rm -rf "${exclusion%??}" || true else rm "${exclusion}" || true diff --git a/generation/update_versions.sh b/generation/update_versions.sh index ed39c3bd0b89..2d04ea328fe8 100755 --- a/generation/update_versions.sh +++ b/generation/update_versions.sh @@ -117,12 +117,4 @@ for path in $(find . -mindepth 2 -maxdepth 2 -name pom.xml | sort | xargs dirnam done done -echo "These artifacts don't exist: ${missing_artifacts[*]}" - -echo "Generating the release-please configurations..." -./generation/generate_release_please_config.sh -echo "Done generating release-please configurations..." - -echo "Copying over the README and CHANGELOG files" -./generation/copy_readme_changelog.sh -echo "Done copying over the README and CHANGELOG files" \ No newline at end of file +echo "These artifacts don't exist: ${missing_artifacts[*]}" \ No newline at end of file diff --git a/java-accessapproval/owlbot.py b/java-accessapproval/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-accessapproval/owlbot.py +++ b/java-accessapproval/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-accesscontextmanager/owlbot.py b/java-accesscontextmanager/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-accesscontextmanager/owlbot.py +++ b/java-accesscontextmanager/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-aiplatform/owlbot.py b/java-aiplatform/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-aiplatform/owlbot.py +++ b/java-aiplatform/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-aiplatform/samples/install-without-bom/pom.xml b/java-aiplatform/samples/install-without-bom/pom.xml deleted file mode 100644 index 5dda186e2dbc..000000000000 --- a/java-aiplatform/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Vertex AI Install Without Bom - https://github.com/googleapis/java-aiplatform - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-aiplatform - 3.3.0 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-aiplatform/samples/pom.xml b/java-aiplatform/samples/pom.xml deleted file mode 100644 index 615f479baf07..000000000000 --- a/java-aiplatform/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Vertex AI Samples Parent - https://github.com/googleapis/java-aiplatform - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-aiplatform/samples/snapshot/pom.xml b/java-aiplatform/samples/snapshot/pom.xml deleted file mode 100644 index 319444b9cd03..000000000000 --- a/java-aiplatform/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Vertex AI Snapshot Samples - https://github.com/googleapis/java-aiplatform - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-aiplatform - 3.3.0 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-aiplatform/samples/snippets/pom.xml b/java-aiplatform/samples/snippets/pom.xml deleted file mode 100644 index 414f5dc50f35..000000000000 --- a/java-aiplatform/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Vertex AI Snippets - https://github.com/googleapis/java-aiplatform - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-aiplatform - 3.3.0 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-analytics-admin/owlbot.py b/java-analytics-admin/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-analytics-admin/owlbot.py +++ b/java-analytics-admin/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-analytics-data/owlbot.py b/java-analytics-data/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-analytics-data/owlbot.py +++ b/java-analytics-data/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-api-gateway/owlbot.py b/java-api-gateway/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-api-gateway/owlbot.py +++ b/java-api-gateway/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-apigee-connect/owlbot.py b/java-apigee-connect/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-apigee-connect/owlbot.py +++ b/java-apigee-connect/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-apigee-registry/owlbot.py b/java-apigee-registry/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-apigee-registry/owlbot.py +++ b/java-apigee-registry/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-appengine-admin/owlbot.py b/java-appengine-admin/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-appengine-admin/owlbot.py +++ b/java-appengine-admin/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-area120-tables/owlbot.py b/java-area120-tables/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-area120-tables/owlbot.py +++ b/java-area120-tables/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-artifact-registry/owlbot.py b/java-artifact-registry/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-artifact-registry/owlbot.py +++ b/java-artifact-registry/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-asset/owlbot.py b/java-asset/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-asset/owlbot.py +++ b/java-asset/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-asset/samples/install-without-bom/pom.xml b/java-asset/samples/install-without-bom/pom.xml deleted file mode 100644 index 5bdc7a82c2f8..000000000000 --- a/java-asset/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Cloud Asset Inventory Install Without Bom - https://github.com/googleapis/java-asset - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-asset - 3.6.0 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-asset/samples/pom.xml b/java-asset/samples/pom.xml deleted file mode 100644 index 0d93aa4e48a4..000000000000 --- a/java-asset/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Cloud Asset Inventory Samples Parent - https://github.com/googleapis/java-asset - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-asset/samples/snapshot/pom.xml b/java-asset/samples/snapshot/pom.xml deleted file mode 100644 index 38568ea4bd87..000000000000 --- a/java-asset/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Cloud Asset Inventory Snapshot Samples - https://github.com/googleapis/java-asset - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-asset - 3.6.0 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-asset/samples/snippets/pom.xml b/java-asset/samples/snippets/pom.xml deleted file mode 100644 index dc5e255cb3cd..000000000000 --- a/java-asset/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Cloud Asset Inventory Snippets - https://github.com/googleapis/java-asset - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-asset - 3.6.0 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-assured-workloads/owlbot.py b/java-assured-workloads/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-assured-workloads/owlbot.py +++ b/java-assured-workloads/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-automl/owlbot.py b/java-automl/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-automl/owlbot.py +++ b/java-automl/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bare-metal-solution/owlbot.py b/java-bare-metal-solution/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-bare-metal-solution/owlbot.py +++ b/java-bare-metal-solution/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-batch/owlbot.py b/java-batch/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-batch/owlbot.py +++ b/java-batch/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-beyondcorp-appconnections/owlbot.py b/java-beyondcorp-appconnections/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-beyondcorp-appconnections/owlbot.py +++ b/java-beyondcorp-appconnections/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-beyondcorp-appconnectors/owlbot.py b/java-beyondcorp-appconnectors/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-beyondcorp-appconnectors/owlbot.py +++ b/java-beyondcorp-appconnectors/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-beyondcorp-appgateways/owlbot.py b/java-beyondcorp-appgateways/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-beyondcorp-appgateways/owlbot.py +++ b/java-beyondcorp-appgateways/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-beyondcorp-clientconnectorservices/owlbot.py b/java-beyondcorp-clientconnectorservices/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-beyondcorp-clientconnectorservices/owlbot.py +++ b/java-beyondcorp-clientconnectorservices/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-beyondcorp-clientgateways/owlbot.py b/java-beyondcorp-clientgateways/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-beyondcorp-clientgateways/owlbot.py +++ b/java-beyondcorp-clientgateways/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bigquery-data-exchange/owlbot.py b/java-bigquery-data-exchange/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-bigquery-data-exchange/owlbot.py +++ b/java-bigquery-data-exchange/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bigqueryconnection/owlbot.py b/java-bigqueryconnection/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-bigqueryconnection/owlbot.py +++ b/java-bigqueryconnection/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bigquerydatatransfer/owlbot.py b/java-bigquerydatatransfer/owlbot.py index 0c554baf841f..38fcb0601daa 100644 --- a/java-bigquerydatatransfer/owlbot.py +++ b/java-bigquerydatatransfer/owlbot.py @@ -34,7 +34,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bigquerymigration/owlbot.py b/java-bigquerymigration/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-bigquerymigration/owlbot.py +++ b/java-bigquerymigration/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-bigqueryreservation/owlbot.py b/java-bigqueryreservation/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-bigqueryreservation/owlbot.py +++ b/java-bigqueryreservation/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-billing/owlbot.py b/java-billing/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-billing/owlbot.py +++ b/java-billing/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-billingbudgets/owlbot.py b/java-billingbudgets/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-billingbudgets/owlbot.py +++ b/java-billingbudgets/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-binary-authorization/owlbot.py b/java-binary-authorization/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-binary-authorization/owlbot.py +++ b/java-binary-authorization/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-certificate-manager/owlbot.py b/java-certificate-manager/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-certificate-manager/owlbot.py +++ b/java-certificate-manager/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-channel/owlbot.py b/java-channel/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-channel/owlbot.py +++ b/java-channel/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-cloudbuild/owlbot.py b/java-cloudbuild/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-cloudbuild/owlbot.py +++ b/java-cloudbuild/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-cloudcommerceconsumerprocurement/owlbot.py b/java-cloudcommerceconsumerprocurement/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-cloudcommerceconsumerprocurement/owlbot.py +++ b/java-cloudcommerceconsumerprocurement/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-compute/owlbot.py b/java-compute/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-compute/owlbot.py +++ b/java-compute/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-contact-center-insights/owlbot.py b/java-contact-center-insights/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-contact-center-insights/owlbot.py +++ b/java-contact-center-insights/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-container/owlbot.py b/java-container/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-container/owlbot.py +++ b/java-container/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-containeranalysis/owlbot.py b/java-containeranalysis/owlbot.py index 66fc3476546d..184e0130f288 100644 --- a/java-containeranalysis/owlbot.py +++ b/java-containeranalysis/owlbot.py @@ -46,7 +46,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-data-fusion/owlbot.py b/java-data-fusion/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-data-fusion/owlbot.py +++ b/java-data-fusion/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-datacatalog/owlbot.py b/java-datacatalog/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-datacatalog/owlbot.py +++ b/java-datacatalog/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataflow/owlbot.py b/java-dataflow/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-dataflow/owlbot.py +++ b/java-dataflow/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataform/owlbot.py b/java-dataform/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-dataform/owlbot.py +++ b/java-dataform/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-datalabeling/owlbot.py b/java-datalabeling/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-datalabeling/owlbot.py +++ b/java-datalabeling/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataplex/owlbot.py b/java-dataplex/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-dataplex/owlbot.py +++ b/java-dataplex/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataproc-metastore/owlbot.py b/java-dataproc-metastore/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-dataproc-metastore/owlbot.py +++ b/java-dataproc-metastore/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataproc/owlbot.py b/java-dataproc/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-dataproc/owlbot.py +++ b/java-dataproc/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dataproc/samples/install-without-bom/pom.xml b/java-dataproc/samples/install-without-bom/pom.xml deleted file mode 100644 index dfea6f5499c5..000000000000 --- a/java-dataproc/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Dataproc Install Without Bom - https://github.com/googleapis/java-dataproc - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-dataproc - 4.0.5 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dataproc/samples/pom.xml b/java-dataproc/samples/pom.xml deleted file mode 100644 index 402702efe5c3..000000000000 --- a/java-dataproc/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Dataproc Samples Parent - https://github.com/googleapis/java-dataproc - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-dataproc/samples/snapshot/pom.xml b/java-dataproc/samples/snapshot/pom.xml deleted file mode 100644 index 64a2b1665ab9..000000000000 --- a/java-dataproc/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Dataproc Snapshot Samples - https://github.com/googleapis/java-dataproc - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dataproc - 4.0.5 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dataproc/samples/snippets/pom.xml b/java-dataproc/samples/snippets/pom.xml deleted file mode 100644 index d044296e8b38..000000000000 --- a/java-dataproc/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Dataproc Snippets - https://github.com/googleapis/java-dataproc - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dataproc - 4.0.5 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-datastream/owlbot.py b/java-datastream/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-datastream/owlbot.py +++ b/java-datastream/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-debugger-client/owlbot.py b/java-debugger-client/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-debugger-client/owlbot.py +++ b/java-debugger-client/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-deploy/owlbot.py b/java-deploy/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-deploy/owlbot.py +++ b/java-deploy/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-deploy/samples/install-without-bom/pom.xml b/java-deploy/samples/install-without-bom/pom.xml deleted file mode 100644 index 1c7d4cd93fb2..000000000000 --- a/java-deploy/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Google Cloud Deploy Install Without Bom - https://github.com/googleapis/java-deploy - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-deploy - 1.1.6 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-deploy/samples/pom.xml b/java-deploy/samples/pom.xml deleted file mode 100644 index 912b3f1fbd1c..000000000000 --- a/java-deploy/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Google Cloud Deploy Samples Parent - https://github.com/googleapis/java-deploy - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-deploy/samples/snapshot/pom.xml b/java-deploy/samples/snapshot/pom.xml deleted file mode 100644 index 35e01604c8ea..000000000000 --- a/java-deploy/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Google Cloud Deploy Snapshot Samples - https://github.com/googleapis/java-deploy - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-deploy - 1.1.6 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-deploy/samples/snippets/pom.xml b/java-deploy/samples/snippets/pom.xml deleted file mode 100644 index a3abfb917706..000000000000 --- a/java-deploy/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Google Cloud Deploy Snippets - https://github.com/googleapis/java-deploy - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-deploy - 1.1.6 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-dialogflow-cx/owlbot.py b/java-dialogflow-cx/owlbot.py index 9c5aed0d7019..f71d4a903c5a 100644 --- a/java-dialogflow-cx/owlbot.py +++ b/java-dialogflow-cx/owlbot.py @@ -25,7 +25,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dialogflow-cx/samples/install-without-bom/pom.xml b/java-dialogflow-cx/samples/install-without-bom/pom.xml deleted file mode 100644 index 23a8327e77f8..000000000000 --- a/java-dialogflow-cx/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Dialogflow CX Install Without Bom - https://github.com/googleapis/java-dialogflow-cx - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-dialogflow-cx - 0.14.7 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dialogflow-cx/samples/pom.xml b/java-dialogflow-cx/samples/pom.xml deleted file mode 100644 index a8601987bf41..000000000000 --- a/java-dialogflow-cx/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Dialogflow CX Samples Parent - https://github.com/googleapis/java-dialogflow-cx - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-dialogflow-cx/samples/snapshot/pom.xml b/java-dialogflow-cx/samples/snapshot/pom.xml deleted file mode 100644 index 10a53feb14ad..000000000000 --- a/java-dialogflow-cx/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Dialogflow CX Snapshot Samples - https://github.com/googleapis/java-dialogflow-cx - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dialogflow-cx - 0.14.7 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dialogflow-cx/samples/snippets/pom.xml b/java-dialogflow-cx/samples/snippets/pom.xml deleted file mode 100644 index dc04c2994c1b..000000000000 --- a/java-dialogflow-cx/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Dialogflow CX Snippets - https://github.com/googleapis/java-dialogflow-cx - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dialogflow-cx - 0.14.7 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-dialogflow/owlbot.py b/java-dialogflow/owlbot.py index 8f36a7ed9aae..9c1523ec70e6 100644 --- a/java-dialogflow/owlbot.py +++ b/java-dialogflow/owlbot.py @@ -95,7 +95,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dialogflow/renovate.json b/java-dialogflow/renovate.json deleted file mode 100644 index e57f11e34db7..000000000000 --- a/java-dialogflow/renovate.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "extends": [ - ":separateMajorReleases", - ":combinePatchMinorReleases", - ":ignoreUnstable", - ":prImmediately", - ":updateNotScheduled", - ":automergeDisabled", - ":ignoreModulesAndTests", - ":maintainLockFilesDisabled", - ":autodetectPinVersions" - ], - "packageRules": [ - { - "packagePatterns": [ - "^com.google.guava:" - ], - "versionScheme": "docker" - }, - { - "packagePatterns": [ - "*" - ], - "semanticCommitType": "deps", - "semanticCommitScope": null - }, - { - "packagePatterns": [ - "^org.apache.maven", - "^org.jacoco:", - "^org.codehaus.mojo:", - "^org.sonatype.plugins:", - "^com.coveo:", - "^com.google.cloud:google-cloud-shared-config" - ], - "semanticCommitType": "build", - "semanticCommitScope": "deps" - }, - { - "packagePatterns": [ - "^com.google.cloud:google-cloud-dialogflow", - "^com.google.cloud:libraries-bom", - "^com.google.cloud.samples:shared-configuration" - ], - "semanticCommitType": "chore", - "semanticCommitScope": "deps" - }, - { - "packagePatterns": [ - "^junit:junit", - "^com.google.truth:truth", - "^org.mockito:mockito-core", - "^org.objenesis:objenesis", - "^com.google.cloud:google-cloud-conformance-tests" - ], - "semanticCommitType": "test", - "semanticCommitScope": "deps" - }, - { - "packagePatterns": [ - "^com.google.cloud:google-cloud-" - ], - "ignoreUnstable": false - }, - { - "packagePatterns": [ - "^com.fasterxml.jackson.core" - ], - "groupName": "jackson dependencies" - } - ], - "semanticCommits": true, - "dependencyDashboard": true -} diff --git a/java-dialogflow/samples/install-without-bom/pom.xml b/java-dialogflow/samples/install-without-bom/pom.xml deleted file mode 100644 index b5d8e0bac954..000000000000 --- a/java-dialogflow/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Dialogflow API Install Without Bom - https://github.com/googleapis/java-dialogflow - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-dialogflow - 4.8.6 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dialogflow/samples/pom.xml b/java-dialogflow/samples/pom.xml deleted file mode 100644 index 4ed2559fb97b..000000000000 --- a/java-dialogflow/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Dialogflow API Samples Parent - https://github.com/googleapis/java-dialogflow - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-dialogflow/samples/snapshot/pom.xml b/java-dialogflow/samples/snapshot/pom.xml deleted file mode 100644 index fbd6204c15e8..000000000000 --- a/java-dialogflow/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Dialogflow API Snapshot Samples - https://github.com/googleapis/java-dialogflow - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dialogflow - 4.8.6 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dialogflow/samples/snippets/pom.xml b/java-dialogflow/samples/snippets/pom.xml deleted file mode 100644 index 3be724b6526e..000000000000 --- a/java-dialogflow/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Dialogflow API Snippets - https://github.com/googleapis/java-dialogflow - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dialogflow - 4.8.6 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-dlp/owlbot.py b/java-dlp/owlbot.py index 3fb2f4e662b6..b644745034f7 100644 --- a/java-dlp/owlbot.py +++ b/java-dlp/owlbot.py @@ -52,7 +52,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dlp/samples/install-without-bom/pom.xml b/java-dlp/samples/install-without-bom/pom.xml deleted file mode 100644 index 68edbeab3a83..000000000000 --- a/java-dlp/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Cloud Data Loss Prevention Install Without Bom - https://github.com/googleapis/java-dlp - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-dlp - 3.7.5 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dlp/samples/pom.xml b/java-dlp/samples/pom.xml deleted file mode 100644 index c422d53ee7eb..000000000000 --- a/java-dlp/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Cloud Data Loss Prevention Samples Parent - https://github.com/googleapis/java-dlp - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-dlp/samples/snapshot/pom.xml b/java-dlp/samples/snapshot/pom.xml deleted file mode 100644 index f9aede7faf92..000000000000 --- a/java-dlp/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Cloud Data Loss Prevention Snapshot Samples - https://github.com/googleapis/java-dlp - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dlp - 3.7.5 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-dlp/samples/snippets/pom.xml b/java-dlp/samples/snippets/pom.xml deleted file mode 100644 index ac035784b7ba..000000000000 --- a/java-dlp/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Cloud Data Loss Prevention Snippets - https://github.com/googleapis/java-dlp - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-dlp - 3.7.5 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-dms/owlbot.py b/java-dms/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-dms/owlbot.py +++ b/java-dms/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-dns/owlbot.py b/java-dns/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-dns/owlbot.py +++ b/java-dns/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-document-ai/owlbot.py b/java-document-ai/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-document-ai/owlbot.py +++ b/java-document-ai/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-domains/owlbot.py b/java-domains/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-domains/owlbot.py +++ b/java-domains/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-errorreporting/owlbot.py b/java-errorreporting/owlbot.py index 011cf55978b9..d755fa0efb2f 100644 --- a/java-errorreporting/owlbot.py +++ b/java-errorreporting/owlbot.py @@ -78,7 +78,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-essential-contacts/owlbot.py b/java-essential-contacts/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-essential-contacts/owlbot.py +++ b/java-essential-contacts/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-eventarc-publishing/owlbot.py b/java-eventarc-publishing/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-eventarc-publishing/owlbot.py +++ b/java-eventarc-publishing/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-eventarc/owlbot.py b/java-eventarc/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-eventarc/owlbot.py +++ b/java-eventarc/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-filestore/owlbot.py b/java-filestore/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-filestore/owlbot.py +++ b/java-filestore/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-functions/owlbot.py b/java-functions/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-functions/owlbot.py +++ b/java-functions/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-game-servers/owlbot.py b/java-game-servers/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-game-servers/owlbot.py +++ b/java-game-servers/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-gke-backup/owlbot.py b/java-gke-backup/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-gke-backup/owlbot.py +++ b/java-gke-backup/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-gke-connect-gateway/owlbot.py b/java-gke-connect-gateway/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-gke-connect-gateway/owlbot.py +++ b/java-gke-connect-gateway/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-gke-multi-cloud/owlbot.py b/java-gke-multi-cloud/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-gke-multi-cloud/owlbot.py +++ b/java-gke-multi-cloud/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-gkehub/owlbot.py b/java-gkehub/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-gkehub/owlbot.py +++ b/java-gkehub/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-grafeas/owlbot.py b/java-grafeas/owlbot.py index 65951f6d412f..74cc38b9cdfd 100644 --- a/java-grafeas/owlbot.py +++ b/java-grafeas/owlbot.py @@ -78,7 +78,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-gsuite-addons/owlbot.py b/java-gsuite-addons/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-gsuite-addons/owlbot.py +++ b/java-gsuite-addons/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-iam-admin/owlbot.py b/java-iam-admin/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-iam-admin/owlbot.py +++ b/java-iam-admin/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-iamcredentials/owlbot.py b/java-iamcredentials/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-iamcredentials/owlbot.py +++ b/java-iamcredentials/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-ids/owlbot.py b/java-ids/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-ids/owlbot.py +++ b/java-ids/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-iot/owlbot.py b/java-iot/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-iot/owlbot.py +++ b/java-iot/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-kms/owlbot.py b/java-kms/owlbot.py index 58a673b3df60..45e2a710c5f6 100644 --- a/java-kms/owlbot.py +++ b/java-kms/owlbot.py @@ -296,7 +296,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-language/owlbot.py b/java-language/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-language/owlbot.py +++ b/java-language/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-language/samples/install-without-bom/pom.xml b/java-language/samples/install-without-bom/pom.xml deleted file mode 100644 index 1604ea57c999..000000000000 --- a/java-language/samples/install-without-bom/pom.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - 4.0.0 - com.google.cloud - -install-without-bom - jar - Google Natural Language Install Without Bom - https://github.com/googleapis/java-language - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - - com.google.cloud - google-cloud-language - 2.3.4 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-language/samples/pom.xml b/java-language/samples/pom.xml deleted file mode 100644 index 628ae66c5871..000000000000 --- a/java-language/samples/pom.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - 4.0.0 - com.google.cloud - google-cloud--samples - 0.0.1-SNAPSHOT - pom - Google Natural Language Samples Parent - https://github.com/googleapis/java-language - - Java idiomatic client for Google Cloud Platform services. - - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - install-without-bom - snapshot - snippets - - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - true - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.13 - - true - - - - - diff --git a/java-language/samples/snapshot/pom.xml b/java-language/samples/snapshot/pom.xml deleted file mode 100644 index 59b3c6d9e6de..000000000000 --- a/java-language/samples/snapshot/pom.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snapshot - jar - Google Natural Language Snapshot Samples - https://github.com/googleapis/java-language - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-language - 2.3.4 - - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.3.0 - - - add-snippets-source - - add-source - - - - ../snippets/src/main/java - - - - - add-snippets-tests - - add-test-source - - - - ../snippets/src/test/java - - - - - - - - diff --git a/java-language/samples/snippets/pom.xml b/java-language/samples/snippets/pom.xml deleted file mode 100644 index 87623a8a22f2..000000000000 --- a/java-language/samples/snippets/pom.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - com.google.cloud - -snippets - jar - Google Natural Language Snippets - https://github.com/googleapis/java-language - - - - com.google.cloud.samples - shared-configuration - 1.2.0 - - - - 1.8 - 1.8 - UTF-8 - - - - - - com.google.cloud - google-cloud-language - 2.3.4 - - - - junit - junit - 4.13.2 - test - - - com.google.truth - truth - 1.1.3 - test - - - diff --git a/java-life-sciences/owlbot.py b/java-life-sciences/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-life-sciences/owlbot.py +++ b/java-life-sciences/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-managed-identities/owlbot.py b/java-managed-identities/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-managed-identities/owlbot.py +++ b/java-managed-identities/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-mediatranslation/owlbot.py b/java-mediatranslation/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-mediatranslation/owlbot.py +++ b/java-mediatranslation/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-memcache/owlbot.py b/java-memcache/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-memcache/owlbot.py +++ b/java-memcache/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-monitoring-dashboards/owlbot.py b/java-monitoring-dashboards/owlbot.py index 03c4e0555044..b617af58959a 100644 --- a/java-monitoring-dashboards/owlbot.py +++ b/java-monitoring-dashboards/owlbot.py @@ -27,7 +27,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-monitoring/owlbot.py b/java-monitoring/owlbot.py index d8371535b20f..7f1d9ad9bc76 100644 --- a/java-monitoring/owlbot.py +++ b/java-monitoring/owlbot.py @@ -43,7 +43,7 @@ def fix_resource(client, version, name): java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-network-management/owlbot.py b/java-network-management/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-network-management/owlbot.py +++ b/java-network-management/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-network-security/owlbot.py b/java-network-security/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-network-security/owlbot.py +++ b/java-network-security/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-networkconnectivity/owlbot.py b/java-networkconnectivity/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-networkconnectivity/owlbot.py +++ b/java-networkconnectivity/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-notebooks/owlbot.py b/java-notebooks/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-notebooks/owlbot.py +++ b/java-notebooks/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-notification/owlbot.py b/java-notification/owlbot.py index b011511ee1f5..ed1a74c68a05 100644 --- a/java-notification/owlbot.py +++ b/java-notification/owlbot.py @@ -21,7 +21,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-optimization/owlbot.py b/java-optimization/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-optimization/owlbot.py +++ b/java-optimization/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-orchestration-airflow/owlbot.py b/java-orchestration-airflow/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-orchestration-airflow/owlbot.py +++ b/java-orchestration-airflow/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-orgpolicy/owlbot.py b/java-orgpolicy/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-orgpolicy/owlbot.py +++ b/java-orgpolicy/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-os-config/owlbot.py b/java-os-config/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-os-config/owlbot.py +++ b/java-os-config/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-os-login/owlbot.py b/java-os-login/owlbot.py index 5a587d2aa7ac..e4aa46bfaa7b 100644 --- a/java-os-login/owlbot.py +++ b/java-os-login/owlbot.py @@ -91,7 +91,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-phishingprotection/owlbot.py b/java-phishingprotection/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-phishingprotection/owlbot.py +++ b/java-phishingprotection/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-policy-troubleshooter/owlbot.py b/java-policy-troubleshooter/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-policy-troubleshooter/owlbot.py +++ b/java-policy-troubleshooter/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-private-catalog/owlbot.py b/java-private-catalog/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-private-catalog/owlbot.py +++ b/java-private-catalog/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-profiler/owlbot.py b/java-profiler/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-profiler/owlbot.py +++ b/java-profiler/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-recaptchaenterprise/owlbot.py b/java-recaptchaenterprise/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-recaptchaenterprise/owlbot.py +++ b/java-recaptchaenterprise/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-recommendations-ai/owlbot.py b/java-recommendations-ai/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-recommendations-ai/owlbot.py +++ b/java-recommendations-ai/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-recommender/owlbot.py b/java-recommender/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-recommender/owlbot.py +++ b/java-recommender/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-redis/owlbot.py b/java-redis/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-redis/owlbot.py +++ b/java-redis/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-resource-settings/owlbot.py b/java-resource-settings/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-resource-settings/owlbot.py +++ b/java-resource-settings/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-resourcemanager/owlbot.py b/java-resourcemanager/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-resourcemanager/owlbot.py +++ b/java-resourcemanager/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-retail/owlbot.py b/java-retail/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-retail/owlbot.py +++ b/java-retail/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-run/owlbot.py b/java-run/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-run/owlbot.py +++ b/java-run/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-scheduler/owlbot.py b/java-scheduler/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-scheduler/owlbot.py +++ b/java-scheduler/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-secretmanager/owlbot.py b/java-secretmanager/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-secretmanager/owlbot.py +++ b/java-secretmanager/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-security-private-ca/owlbot.py b/java-security-private-ca/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-security-private-ca/owlbot.py +++ b/java-security-private-ca/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-securitycenter-settings/owlbot.py b/java-securitycenter-settings/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-securitycenter-settings/owlbot.py +++ b/java-securitycenter-settings/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-securitycenter/owlbot.py b/java-securitycenter/owlbot.py index e7cb06974185..bd38e37115c9 100644 --- a/java-securitycenter/owlbot.py +++ b/java-securitycenter/owlbot.py @@ -68,7 +68,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-service-control/owlbot.py b/java-service-control/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-service-control/owlbot.py +++ b/java-service-control/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-service-management/owlbot.py b/java-service-management/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-service-management/owlbot.py +++ b/java-service-management/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-service-usage/owlbot.py b/java-service-usage/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-service-usage/owlbot.py +++ b/java-service-usage/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-servicedirectory/owlbot.py b/java-servicedirectory/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-servicedirectory/owlbot.py +++ b/java-servicedirectory/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-shell/owlbot.py b/java-shell/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-shell/owlbot.py +++ b/java-shell/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-speech/owlbot.py b/java-speech/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-speech/owlbot.py +++ b/java-speech/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-storage-transfer/owlbot.py b/java-storage-transfer/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-storage-transfer/owlbot.py +++ b/java-storage-transfer/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-talent/owlbot.py b/java-talent/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-talent/owlbot.py +++ b/java-talent/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-tasks/owlbot.py b/java-tasks/owlbot.py index b0f8efdfe6cc..bff90e7f65ac 100644 --- a/java-tasks/owlbot.py +++ b/java-tasks/owlbot.py @@ -63,7 +63,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-texttospeech/owlbot.py b/java-texttospeech/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-texttospeech/owlbot.py +++ b/java-texttospeech/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-tpu/owlbot.py b/java-tpu/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-tpu/owlbot.py +++ b/java-tpu/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-trace/owlbot.py b/java-trace/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-trace/owlbot.py +++ b/java-trace/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-translate/owlbot.py b/java-translate/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-translate/owlbot.py +++ b/java-translate/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-video-intelligence/owlbot.py b/java-video-intelligence/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-video-intelligence/owlbot.py +++ b/java-video-intelligence/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-video-live-stream/owlbot.py b/java-video-live-stream/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-video-live-stream/owlbot.py +++ b/java-video-live-stream/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-video-stitcher/owlbot.py b/java-video-stitcher/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-video-stitcher/owlbot.py +++ b/java-video-stitcher/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-video-transcoder/owlbot.py b/java-video-transcoder/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-video-transcoder/owlbot.py +++ b/java-video-transcoder/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-vision/owlbot.py b/java-vision/owlbot.py index aba72b58864a..039042d53ba4 100644 --- a/java-vision/owlbot.py +++ b/java-vision/owlbot.py @@ -234,7 +234,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-vmmigration/owlbot.py b/java-vmmigration/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-vmmigration/owlbot.py +++ b/java-vmmigration/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-vpcaccess/owlbot.py b/java-vpcaccess/owlbot.py index 5c3608404471..7a77cf5ee557 100644 --- a/java-vpcaccess/owlbot.py +++ b/java-vpcaccess/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-webrisk/owlbot.py b/java-webrisk/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-webrisk/owlbot.py +++ b/java-webrisk/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-websecurityscanner/owlbot.py b/java-websecurityscanner/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-websecurityscanner/owlbot.py +++ b/java-websecurityscanner/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-workflow-executions/owlbot.py b/java-workflow-executions/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-workflow-executions/owlbot.py +++ b/java-workflow-executions/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE", diff --git a/java-workflows/owlbot.py b/java-workflows/owlbot.py index e406af176f38..c1e295559edf 100644 --- a/java-workflows/owlbot.py +++ b/java-workflows/owlbot.py @@ -24,7 +24,7 @@ java.common_templates(excludes=[ ".github/*", ".kokoro/*", - ".samples/*", + "samples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "LICENSE",