From 68b550adfec11d1042a651b59720a24bbe79f502 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:52:58 -0700 Subject: [PATCH 01/17] updated google api to the latest and added google analytics method --- build.sbt | 3 ++- .../Google_Api/0.0.0-dev/src/Main.enso | 27 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 04395a9136ae..1fbb78a8f06c 100644 --- a/build.sbt +++ b/build.sbt @@ -2764,7 +2764,8 @@ lazy val `std-google-api` = project `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( "com.google.api-client" % "google-api-client" % "1.35.2", - "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0" + "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", + "com.google.analytics" % "google-analytics-data" % "0.44.0" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index b6c702ba1fa4..460e97e73113 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -8,6 +8,14 @@ polyglot java import com.google.api.client.json.gson.GsonFactory polyglot java import com.google.api.services.sheets.v4.Sheets polyglot java import com.google.api.services.sheets.v4.SheetsScopes polyglot java import java.util.Collections +polyglot java import com.google.analytics.data.v1beta.BetaAnalyticsDataClient +polyglot java import com.google.analytics.data.v1beta.DateRange +polyglot java import com.google.analytics.data.v1beta.Dimension +polyglot java import com.google.analytics.data.v1beta.Metric +polyglot java import com.google.analytics.data.v1beta.Row +polyglot java import com.google.analytics.data.v1beta.RunReportRequest +polyglot java import com.google.analytics.data.v1beta.RunReportResponse + ## PRIVATE type Google_Api_Client @@ -58,3 +66,22 @@ initialize secret_file = http_transport = GoogleNetHttpTransport.newTrustedTransport json_factory = GsonFactory.getDefaultInstance Google_Api_Client.Value credential json_factory http_transport + + +## PLACEHOLDER, performs google analytics call + + Arguments: + - property_id + - start_date + - end_date +run_google_report : Text -> Text -> Text +run_google_report property_id start_date end_date = + analytics_data = BetaAnalyticsDataClient.create + request = RunReportRequest.newBuilder + .setProperty("properties/" + property_id) + .addDimensions(Dimension.newBuilder.setName("city")) + .addMetrics(Metric.newBuilder.setName("activeUsers")) + .addDateRanges(DateRange.newBuilder.setStartDate(start_date).setEndDate(end_date)) + .build + response = RunReportResponse analytics_data.runReport(request) + response.GetRowsList From cab5064baafb32a53da5bdcd49231df83e69e425 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:52:58 -0700 Subject: [PATCH 02/17] updated google api to the latest and added google analytics method --- build.sbt | 3 ++- .../Google_Api/0.0.0-dev/src/Main.enso | 27 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index aa0c2640ceea..4dfd366d79bf 100644 --- a/build.sbt +++ b/build.sbt @@ -2770,7 +2770,8 @@ lazy val `std-google-api` = project `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( "com.google.api-client" % "google-api-client" % "1.35.2", - "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0" + "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", + "com.google.analytics" % "google-analytics-data" % "0.44.0" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index b6c702ba1fa4..460e97e73113 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -8,6 +8,14 @@ polyglot java import com.google.api.client.json.gson.GsonFactory polyglot java import com.google.api.services.sheets.v4.Sheets polyglot java import com.google.api.services.sheets.v4.SheetsScopes polyglot java import java.util.Collections +polyglot java import com.google.analytics.data.v1beta.BetaAnalyticsDataClient +polyglot java import com.google.analytics.data.v1beta.DateRange +polyglot java import com.google.analytics.data.v1beta.Dimension +polyglot java import com.google.analytics.data.v1beta.Metric +polyglot java import com.google.analytics.data.v1beta.Row +polyglot java import com.google.analytics.data.v1beta.RunReportRequest +polyglot java import com.google.analytics.data.v1beta.RunReportResponse + ## PRIVATE type Google_Api_Client @@ -58,3 +66,22 @@ initialize secret_file = http_transport = GoogleNetHttpTransport.newTrustedTransport json_factory = GsonFactory.getDefaultInstance Google_Api_Client.Value credential json_factory http_transport + + +## PLACEHOLDER, performs google analytics call + + Arguments: + - property_id + - start_date + - end_date +run_google_report : Text -> Text -> Text +run_google_report property_id start_date end_date = + analytics_data = BetaAnalyticsDataClient.create + request = RunReportRequest.newBuilder + .setProperty("properties/" + property_id) + .addDimensions(Dimension.newBuilder.setName("city")) + .addMetrics(Metric.newBuilder.setName("activeUsers")) + .addDateRanges(DateRange.newBuilder.setStartDate(start_date).setEndDate(end_date)) + .build + response = RunReportResponse analytics_data.runReport(request) + response.GetRowsList From 3157e16a74908c25f1418e5fe89982bfa72d9d09 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Mon, 29 Jan 2024 10:58:35 -0700 Subject: [PATCH 03/17] hardcoded values for testing --- .../lib/Standard/Google_Api/0.0.0-dev/src/Main.enso | 10 +++++----- project/Editions.scala | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index 460e97e73113..f008cfe4726b 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -74,14 +74,14 @@ initialize secret_file = - property_id - start_date - end_date -run_google_report : Text -> Text -> Text -run_google_report property_id start_date end_date = +run_google_report : Text -> Text -> Text -> Table +run_google_report self property_id start_date end_date = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder - .setProperty("properties/" + property_id) + .setProperty("properties/" + '415432269') .addDimensions(Dimension.newBuilder.setName("city")) .addMetrics(Metric.newBuilder.setName("activeUsers")) - .addDateRanges(DateRange.newBuilder.setStartDate(start_date).setEndDate(end_date)) + .addDateRanges(DateRange.newBuilder.setStartDate("2020-03-31").setEndDate("today")) .build response = RunReportResponse analytics_data.runReport(request) - response.GetRowsList + Table.new response.GetRowsList diff --git a/project/Editions.scala b/project/Editions.scala index 97b09c24869a..6bd9d1f17f50 100644 --- a/project/Editions.scala +++ b/project/Editions.scala @@ -17,7 +17,8 @@ object Editions { "Standard.Geo", "Standard.Visualization", "Standard.Examples", - "Standard.Searcher" + "Standard.Searcher", + "Standard.Google_Api" ) case class ContribLibrary(name: String, version: String) From 1b7521c504154dafcacd3a0efe2e40b5aa7c002e Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:58:13 -0700 Subject: [PATCH 04/17] Latest version based on session with James --- build.sbt | 2 +- .../Standard/Google_Api/0.0.0-dev/src/Main.enso | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index 4dfd366d79bf..becfffa5c4ac 100644 --- a/build.sbt +++ b/build.sbt @@ -2769,7 +2769,7 @@ lazy val `std-google-api` = project Compile / packageBin / artifactPath := `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( - "com.google.api-client" % "google-api-client" % "1.35.2", + "com.google.api-client" % "google-api-client" % "2.2.0", "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", "com.google.analytics" % "google-analytics-data" % "0.44.0" ), diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index f008cfe4726b..6e42d32931ed 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -75,13 +75,13 @@ initialize secret_file = - start_date - end_date run_google_report : Text -> Text -> Text -> Table -run_google_report self property_id start_date end_date = +run_google_report property_id start_date end_date = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder - .setProperty("properties/" + '415432269') - .addDimensions(Dimension.newBuilder.setName("city")) - .addMetrics(Metric.newBuilder.setName("activeUsers")) - .addDateRanges(DateRange.newBuilder.setStartDate("2020-03-31").setEndDate("today")) - .build - response = RunReportResponse analytics_data.runReport(request) - Table.new response.GetRowsList + . setProperty "properties/"+"415432269" + . addDimensions (Dimension.newBuilder.setName "city") + . addMetrics (Metric.newBuilder.setName "activeUsers") + . addDateRanges (DateRange.newBuilder.setStartDate "2020-03-31" . setEndDate "today") + . build + response = analytics_data.runReport request + response.getRowsList From b0feb24e0d3c7c69ce9464604751dfa2138eef1e Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:52:58 -0700 Subject: [PATCH 05/17] updated google api to the latest and added google analytics method --- build.sbt | 3 ++- .../Google_Api/0.0.0-dev/src/Main.enso | 27 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5e69fbedd9c9..1b867b1fef75 100644 --- a/build.sbt +++ b/build.sbt @@ -2777,7 +2777,8 @@ lazy val `std-google-api` = project `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( "com.google.api-client" % "google-api-client" % "1.35.2", - "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0" + "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", + "com.google.analytics" % "google-analytics-data" % "0.44.0" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index b6c702ba1fa4..460e97e73113 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -8,6 +8,14 @@ polyglot java import com.google.api.client.json.gson.GsonFactory polyglot java import com.google.api.services.sheets.v4.Sheets polyglot java import com.google.api.services.sheets.v4.SheetsScopes polyglot java import java.util.Collections +polyglot java import com.google.analytics.data.v1beta.BetaAnalyticsDataClient +polyglot java import com.google.analytics.data.v1beta.DateRange +polyglot java import com.google.analytics.data.v1beta.Dimension +polyglot java import com.google.analytics.data.v1beta.Metric +polyglot java import com.google.analytics.data.v1beta.Row +polyglot java import com.google.analytics.data.v1beta.RunReportRequest +polyglot java import com.google.analytics.data.v1beta.RunReportResponse + ## PRIVATE type Google_Api_Client @@ -58,3 +66,22 @@ initialize secret_file = http_transport = GoogleNetHttpTransport.newTrustedTransport json_factory = GsonFactory.getDefaultInstance Google_Api_Client.Value credential json_factory http_transport + + +## PLACEHOLDER, performs google analytics call + + Arguments: + - property_id + - start_date + - end_date +run_google_report : Text -> Text -> Text +run_google_report property_id start_date end_date = + analytics_data = BetaAnalyticsDataClient.create + request = RunReportRequest.newBuilder + .setProperty("properties/" + property_id) + .addDimensions(Dimension.newBuilder.setName("city")) + .addMetrics(Metric.newBuilder.setName("activeUsers")) + .addDateRanges(DateRange.newBuilder.setStartDate(start_date).setEndDate(end_date)) + .build + response = RunReportResponse analytics_data.runReport(request) + response.GetRowsList From fd6783afaa6ccaa651f95ac0dd806184be32cb44 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Mon, 29 Jan 2024 10:58:35 -0700 Subject: [PATCH 06/17] hardcoded values for testing --- .../lib/Standard/Google_Api/0.0.0-dev/src/Main.enso | 10 +++++----- project/Editions.scala | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index 460e97e73113..f008cfe4726b 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -74,14 +74,14 @@ initialize secret_file = - property_id - start_date - end_date -run_google_report : Text -> Text -> Text -run_google_report property_id start_date end_date = +run_google_report : Text -> Text -> Text -> Table +run_google_report self property_id start_date end_date = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder - .setProperty("properties/" + property_id) + .setProperty("properties/" + '415432269') .addDimensions(Dimension.newBuilder.setName("city")) .addMetrics(Metric.newBuilder.setName("activeUsers")) - .addDateRanges(DateRange.newBuilder.setStartDate(start_date).setEndDate(end_date)) + .addDateRanges(DateRange.newBuilder.setStartDate("2020-03-31").setEndDate("today")) .build response = RunReportResponse analytics_data.runReport(request) - response.GetRowsList + Table.new response.GetRowsList diff --git a/project/Editions.scala b/project/Editions.scala index ecaba3a6ccfe..dec16578ef24 100644 --- a/project/Editions.scala +++ b/project/Editions.scala @@ -18,7 +18,8 @@ object Editions { "Standard.Geo", "Standard.Visualization", "Standard.Examples", - "Standard.Searcher" + "Standard.Searcher", + "Standard.Google_Api" ) case class ContribLibrary(name: String, version: String) From d73dba3a0633c316b434b1267c222f5d2db40471 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:58:13 -0700 Subject: [PATCH 07/17] Latest version based on session with James --- build.sbt | 2 +- .../Standard/Google_Api/0.0.0-dev/src/Main.enso | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index 1b867b1fef75..d7ef5c94d263 100644 --- a/build.sbt +++ b/build.sbt @@ -2776,7 +2776,7 @@ lazy val `std-google-api` = project Compile / packageBin / artifactPath := `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( - "com.google.api-client" % "google-api-client" % "1.35.2", + "com.google.api-client" % "google-api-client" % "2.2.0", "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", "com.google.analytics" % "google-analytics-data" % "0.44.0" ), diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index f008cfe4726b..6e42d32931ed 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -75,13 +75,13 @@ initialize secret_file = - start_date - end_date run_google_report : Text -> Text -> Text -> Table -run_google_report self property_id start_date end_date = +run_google_report property_id start_date end_date = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder - .setProperty("properties/" + '415432269') - .addDimensions(Dimension.newBuilder.setName("city")) - .addMetrics(Metric.newBuilder.setName("activeUsers")) - .addDateRanges(DateRange.newBuilder.setStartDate("2020-03-31").setEndDate("today")) - .build - response = RunReportResponse analytics_data.runReport(request) - Table.new response.GetRowsList + . setProperty "properties/"+"415432269" + . addDimensions (Dimension.newBuilder.setName "city") + . addMetrics (Metric.newBuilder.setName "activeUsers") + . addDateRanges (DateRange.newBuilder.setStartDate "2020-03-31" . setEndDate "today") + . build + response = analytics_data.runReport request + response.getRowsList From 4a021a11e63f76a7ee9b7704d7f8a9c1b0706ed9 Mon Sep 17 00:00:00 2001 From: James Dunkerley Date: Tue, 30 Jan 2024 11:13:18 +0000 Subject: [PATCH 08/17] Parse the result into a Table. --- .../Google_Api/0.0.0-dev/src/Main.enso | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index 6e42d32931ed..e70c9543da96 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -1,4 +1,5 @@ from Standard.Base import all +import Standard.Base.Data.Array_Proxy.Array_Proxy from Standard.Table import Table @@ -74,14 +75,28 @@ initialize secret_file = - property_id - start_date - end_date -run_google_report : Text -> Text -> Text -> Table -run_google_report property_id start_date end_date = +run_google_report : Text -> Date -> Date -> Table +run_google_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder - . setProperty "properties/"+"415432269" + . setProperty ("properties/"+property_id) . addDimensions (Dimension.newBuilder.setName "city") . addMetrics (Metric.newBuilder.setName "activeUsers") - . addDateRanges (DateRange.newBuilder.setStartDate "2020-03-31" . setEndDate "today") + . addDateRanges (DateRange.newBuilder.setStartDate start_date.to_text . setEndDate end_date.to_text) . build response = analytics_data.runReport request - response.getRowsList + + dimension_count = response.getDimensionHeadersCount + dimensions = 0.up_to dimension_count . map i-> response.getDimensionHeaders i . getName + metric_count = response.getMetricHeadersCount + metrics = 0.up_to metric_count . map i-> response.getMetricHeaders i . getName + headers = dimensions + metrics + + row_count = response.getRowCount + row_proxy = Array_Proxy.new row_count i-> + row = response.getRows i + dimension_values = 0.up_to dimension_count . map i-> row.getDimensionValues i . getValue + metric_values = 0.up_to metric_count . map i-> row.getMetricValues i . getValue + dimension_values + metric_values + + Table.from_rows headers (Vector.from_polyglot_array row_proxy) From 22445fd3ca3b4b311e0b8a0bf9e7a77c4fc94d9b Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Tue, 30 Jan 2024 14:42:51 -0700 Subject: [PATCH 09/17] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9bb90651495..54903840ddb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1031,6 +1031,7 @@ - [DataflowError.withoutTrace doesn't store stacktrace][8608] - [Derive --in-project from --run source location][8775] - [Binary operator resolution based on that value][8779] +- [Add run_google_report method][8907] [3227]: https://github.com/enso-org/enso/pull/3227 [3248]: https://github.com/enso-org/enso/pull/3248 @@ -1186,6 +1187,7 @@ [8608]: https://github.com/enso-org/enso/pull/8608 [8775]: https://github.com/enso-org/enso/pull/8775 [8779]: https://github.com/enso-org/enso/pull/8779 +[8907]: https://github.com/enso-org/enso/pull/8907 # Enso 2.0.0-alpha.18 (2021-10-12) From 10144c359c16683faa078f258824908a9cec1764 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Wed, 31 Jan 2024 07:13:05 -0700 Subject: [PATCH 10/17] Update distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso Co-authored-by: Pavel Marek --- distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index e70c9543da96..e9149f92beb8 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -76,7 +76,7 @@ initialize secret_file = - start_date - end_date run_google_report : Text -> Date -> Date -> Table -run_google_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today = +run_google_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today -> Table = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder . setProperty ("properties/"+property_id) From 370320be2f941e5bbb9a75ce939ce756f18462b8 Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Wed, 31 Jan 2024 09:17:02 -0700 Subject: [PATCH 11/17] Updated documentation --- .../lib/Standard/Google_Api/0.0.0-dev/src/Main.enso | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index e70c9543da96..3f1fc3c04e57 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -70,11 +70,11 @@ initialize secret_file = ## PLACEHOLDER, performs google analytics call - + This method calls the google reporting v4 api. Presently it specifically returns activeUsers by City Arguments: - - property_id - - start_date - - end_date + - property_id: The Google Analytics property_id that is being queried + - start_date: The beginning date of the query. Default is 2020-03-31 + - end_date: The end date being queried. Defaults to today. run_google_report : Text -> Date -> Date -> Table run_google_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today = analytics_data = BetaAnalyticsDataClient.create From 6f69f935f57c0f7f67294313665715b6ca59994a Mon Sep 17 00:00:00 2001 From: Cassandra-Clark <40743109+Cassandra-Clark@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:51:51 -0700 Subject: [PATCH 12/17] rename run_google_report to run_analytics_report --- distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso index 25cfad1f755c..40e9a228fa1b 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/src/Main.enso @@ -75,8 +75,8 @@ initialize secret_file = - property_id: The Google Analytics property_id that is being queried - start_date: The beginning date of the query. Default is 2020-03-31 - end_date: The end date being queried. Defaults to today. -run_google_report : Text -> Date -> Date -> Table -run_google_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today -> Table = +run_analytics_report : Text -> Date -> Date -> Table +run_analytics_report property_id:Text start_date:Date=(Date.new 2020 3 31) end_date:Date=Date.today -> Table = analytics_data = BetaAnalyticsDataClient.create request = RunReportRequest.newBuilder . setProperty ("properties/"+property_id) From dfdef998ffc0741e66d5282685dfc90d4cbfb0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Tue, 6 Feb 2024 14:42:49 +0100 Subject: [PATCH 13/17] adding license info 1 --- tools/legal-review/AWS/report-state | 2 +- .../copyright-keep-context | 1 + .../copyright-keep-context | 1 + .../copyright-ignore | 1 + .../copyright-keep | 5 ++++ .../copyright-keep-context | 2 ++ .../copyright-ignore | 4 +++ .../copyright-keep | 2 ++ .../copyright-keep-context | 2 ++ .../copyright-ignore | 25 +++++++++++++++++ .../com.google.api.gax-2.39.0/copyright-keep | 6 +++++ .../copyright-keep-context | 2 ++ .../copyright-ignore | 4 +++ .../copyright-keep | 5 ++++ .../copyright-keep-context | 2 ++ .../copyright-ignore | 4 +++ .../copyright-keep | 4 +++ .../copyright-keep-context | 2 ++ .../copyright-add | 15 +++++++++++ .../copyright-ignore | 1 + .../copyright-add | 15 +++++++++++ .../copyright-ignore | 1 + .../com.google.re2j.re2j-1.7/copyright-keep | 2 ++ .../copyright-ignore | 1 + .../copyright-keep-context | 3 +++ .../files-ignore | 1 + .../files-keep | 1 + .../files-ignore | 1 + .../files-keep | 1 + .../files-ignore | 1 + .../files-keep | 1 + .../copyright-keep | 22 +++++++++++++++ .../copyright-keep-context | 4 +++ .../copyright-keep-context | 1 + tools/legal-review/Google_Api/report-state | 6 ++--- .../Google_Api/reviewed-licenses/Apache_2 | 1 + .../reviewed-licenses/BSD_New_license | 1 + .../Google_Api/reviewed-licenses/Go_License | 1 + .../Google_Api/reviewed-licenses/MIT_license | 1 + tools/legal-review/Table/report-state | 4 +-- tools/legal-review/engine/report-state | 4 +-- tools/legal-review/launcher/report-state | 4 +-- tools/legal-review/license-texts/Go_License | 27 +++++++++++++++++++ .../legal-review/project-manager/report-state | 4 +-- 44 files changed, 186 insertions(+), 12 deletions(-) create mode 100644 tools/legal-review/Google_Api/com.google.analytics.google-analytics-data-0.44.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.android.annotations-4.1.1.4/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-add create mode 100644 tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-add create mode 100644 tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.re2j.re2j-1.7/copyright-keep create mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-ignore create mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-keep create mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-ignore create mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-keep create mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-ignore create mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-keep create mode 100644 tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep create mode 100644 tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/reviewed-licenses/Apache_2 create mode 100644 tools/legal-review/Google_Api/reviewed-licenses/BSD_New_license create mode 100644 tools/legal-review/Google_Api/reviewed-licenses/Go_License create mode 100644 tools/legal-review/Google_Api/reviewed-licenses/MIT_license create mode 100644 tools/legal-review/license-texts/Go_License diff --git a/tools/legal-review/AWS/report-state b/tools/legal-review/AWS/report-state index cbf55afbcb6a..35aa04df9265 100644 --- a/tools/legal-review/AWS/report-state +++ b/tools/legal-review/AWS/report-state @@ -1,3 +1,3 @@ 79F8085006CADBE1F915455506E1CDEB9A27B8B59EDFCA78FAA3218A3296DE62 6F5A08E5432F0B0C17A5CFC28207781B7C39E85B120D4F74B9B6AA35FF80E8C0 -0 +2 diff --git a/tools/legal-review/Google_Api/com.google.analytics.google-analytics-data-0.44.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.analytics.google-analytics-data-0.44.0/copyright-keep-context new file mode 100644 index 000000000000..82188e9db4eb --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.analytics.google-analytics-data-0.44.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.android.annotations-4.1.1.4/copyright-keep-context b/tools/legal-review/Google_Api/com.google.android.annotations-4.1.1.4/copyright-keep-context new file mode 100644 index 000000000000..392b6834af0f --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.android.annotations-4.1.1.4/copyright-keep-context @@ -0,0 +1 @@ +Copyright (C) 2012 The Android Open Source Project diff --git a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-ignore new file mode 100644 index 000000000000..5fe8027ba1ba --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-ignore @@ -0,0 +1 @@ +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep new file mode 100644 index 000000000000..9374690874bd --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep @@ -0,0 +1,5 @@ +Copyright 2011 Google Inc. +Copyright 2012 Google Inc. +Copyright 2013 Google Inc. +Copyright 2014 Google Inc. +Copyright 2015 Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep-context new file mode 100644 index 000000000000..f698e3520395 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-2.2.0/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2010 Google Inc. +Copyright 2020 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-ignore new file mode 100644 index 000000000000..081db6541575 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-ignore @@ -0,0 +1,4 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep new file mode 100644 index 000000000000..7eec9c949d62 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep @@ -0,0 +1,2 @@ +Copyright 2017, Google Inc. +Copyright 2018, Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep-context new file mode 100644 index 000000000000..53a9397dbc4c --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2016, Google Inc. +Copyright 2023, Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-ignore new file mode 100644 index 000000000000..25ae704ce055 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-ignore @@ -0,0 +1,25 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC +Copyright 2022 Google LLC +Copyright 2023 Google LLC +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +Redistributions of source code must retain the above copyright +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer +copyright notice, this list of conditions and the following disclaimer +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep new file mode 100644 index 000000000000..d56d9c753f67 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep @@ -0,0 +1,6 @@ +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep-context new file mode 100644 index 000000000000..2bd02ebde327 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2016 Google LLC +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-ignore new file mode 100644 index 000000000000..081db6541575 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-ignore @@ -0,0 +1,4 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep new file mode 100644 index 000000000000..3ccf1ca7a388 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep @@ -0,0 +1,5 @@ +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep-context new file mode 100644 index 000000000000..1cacaa167f16 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2016 Google LLC +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-ignore new file mode 100644 index 000000000000..081db6541575 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-ignore @@ -0,0 +1,4 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep new file mode 100644 index 000000000000..ac80580c9fc7 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep @@ -0,0 +1,4 @@ +Copyright 2018 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep-context new file mode 100644 index 000000000000..908510d69117 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2017 Google LLC +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-add b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-add new file mode 100644 index 000000000000..bf15f6b8cd2c --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-add @@ -0,0 +1,15 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-ignore new file mode 100644 index 000000000000..82188e9db4eb --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/copyright-ignore @@ -0,0 +1 @@ +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-add b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-add new file mode 100644 index 000000000000..bf15f6b8cd2c --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-add @@ -0,0 +1,15 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-ignore new file mode 100644 index 000000000000..82188e9db4eb --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/copyright-ignore @@ -0,0 +1 @@ +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.re2j.re2j-1.7/copyright-keep b/tools/legal-review/Google_Api/com.google.re2j.re2j-1.7/copyright-keep new file mode 100644 index 000000000000..10d11b469eec --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.re2j.re2j-1.7/copyright-keep @@ -0,0 +1,2 @@ +Copyright (c) 2020 The Go Authors. All rights reserved. +Copyright (c) 2021 The Go Authors. All rights reserved. diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-ignore b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-ignore new file mode 100644 index 000000000000..8cd8d66408c4 --- /dev/null +++ b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-ignore @@ -0,0 +1 @@ +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-keep-context b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-keep-context new file mode 100644 index 000000000000..f8cc9047f303 --- /dev/null +++ b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/copyright-keep-context @@ -0,0 +1,3 @@ +

This is public domain code with no copyrights. From home page of +Some portions of this file Copyright (c) 2004-2006 Intel Corporation +This is public domain code with no copyrights. From home page of diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-ignore b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-ignore new file mode 100644 index 000000000000..0256724c8d06 --- /dev/null +++ b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-ignore @@ -0,0 +1 @@ +META-INF/LICENSE.txt diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-keep b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-keep new file mode 100644 index 000000000000..f9a3ec844f02 --- /dev/null +++ b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.16.0/files-keep @@ -0,0 +1 @@ +META-INF/NOTICE.txt diff --git a/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-ignore b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-ignore new file mode 100644 index 000000000000..b9005a4d5ae7 --- /dev/null +++ b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-ignore @@ -0,0 +1 @@ +META-INF/LICENSE diff --git a/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-keep b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-keep new file mode 100644 index 000000000000..0d1c51375183 --- /dev/null +++ b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.14/files-keep @@ -0,0 +1 @@ +META-INF/NOTICE diff --git a/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-ignore b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-ignore new file mode 100644 index 000000000000..b9005a4d5ae7 --- /dev/null +++ b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-ignore @@ -0,0 +1 @@ +META-INF/LICENSE diff --git a/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-keep b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-keep new file mode 100644 index 000000000000..0d1c51375183 --- /dev/null +++ b/tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.16/files-keep @@ -0,0 +1 @@ +META-INF/NOTICE diff --git a/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep b/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep new file mode 100644 index 000000000000..0a7f09edeff0 --- /dev/null +++ b/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep @@ -0,0 +1,22 @@ +Copyright (C) 2008 The Android Open Source Project +Copyright (C) 2009 The Android Open Source Project +Copyright (C) 2010 The Android Open Source Project +Copyright (C) 2011 The Android Open Source Project +Copyright (C) 2012 The Android Open Source Project +Copyright (C) 2013 The Android Open Source Project +Copyright (C) 2014 The Android Open Source Project +Copyright (C) 2015 The Android Open Source Project +Copyright (C) 2016 The Android Open Source Project +Copyright (C) 2017 The Android Open Source Project +Copyright (C) 2019 The Android Open Source Project +Copyright (C) 2020 The Android Open Source Project +Copyright 2014 The Android Open Source Project +Copyright 2014 The Netty Project +Copyright 2015 The Android Open Source Project +Copyright 2016 The Android Open Source Project +Copyright 2016 The Netty Project +Copyright 2017 The Android Open Source Project +Copyright 2017 The Netty Project +Copyright 2018 The Android Open Source Project +Copyright 2019 The Android Open Source Project +Copyright 2021 The Android Open Source Project diff --git a/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep-context b/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep-context new file mode 100644 index 000000000000..da5a06264051 --- /dev/null +++ b/tools/legal-review/Google_Api/org.conscrypt.conscrypt-openjdk-uber-2.5.2/copyright-keep-context @@ -0,0 +1,4 @@ +Copyright (C) 2007 The Android Open Source Project +Copyright 2013 The Android Open Source Project +Copyright 2013 The Netty Project +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/copyright-keep-context b/tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/copyright-keep-context new file mode 100644 index 000000000000..f4b8ad92e4a2 --- /dev/null +++ b/tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos diff --git a/tools/legal-review/Google_Api/report-state b/tools/legal-review/Google_Api/report-state index c21a6c4f2d6e..6bb841a464aa 100644 --- a/tools/legal-review/Google_Api/report-state +++ b/tools/legal-review/Google_Api/report-state @@ -1,3 +1,3 @@ -C5C845C319F900C420F04C815ACFC315E24C581960BE61B03BB6A2F8D71122C9 -12BB786E599BE5441F12C0061839D42DBA889C1FBC45F74938E71F664ABD0E65 -0 +4B20A73BCBECA2ADC0A608DD3814442B01F67891DB6524AE5B24CD919092C304 +055A656383D37CCC25C13D065991E90CB66A86A5133B1A2967629C86077C83A8 +137 diff --git a/tools/legal-review/Google_Api/reviewed-licenses/Apache_2 b/tools/legal-review/Google_Api/reviewed-licenses/Apache_2 new file mode 100644 index 000000000000..ff46ef6ff419 --- /dev/null +++ b/tools/legal-review/Google_Api/reviewed-licenses/Apache_2 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/Google_Api/reviewed-licenses/BSD_New_license b/tools/legal-review/Google_Api/reviewed-licenses/BSD_New_license new file mode 100644 index 000000000000..c547acb36c9b --- /dev/null +++ b/tools/legal-review/Google_Api/reviewed-licenses/BSD_New_license @@ -0,0 +1 @@ +tools/legal-review/license-texts/BSD-3-Clause diff --git a/tools/legal-review/Google_Api/reviewed-licenses/Go_License b/tools/legal-review/Google_Api/reviewed-licenses/Go_License new file mode 100644 index 000000000000..97874610ba28 --- /dev/null +++ b/tools/legal-review/Google_Api/reviewed-licenses/Go_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/Go_License diff --git a/tools/legal-review/Google_Api/reviewed-licenses/MIT_license b/tools/legal-review/Google_Api/reviewed-licenses/MIT_license new file mode 100644 index 000000000000..3889131c8ace --- /dev/null +++ b/tools/legal-review/Google_Api/reviewed-licenses/MIT_license @@ -0,0 +1 @@ +tools/legal-review/license-texts/MIT diff --git a/tools/legal-review/Table/report-state b/tools/legal-review/Table/report-state index 83bef2910f95..ea4c0da055c3 100644 --- a/tools/legal-review/Table/report-state +++ b/tools/legal-review/Table/report-state @@ -1,3 +1,3 @@ AE474B24FC7C88ACA56C70EC19DCD5F224178089AA2910DB117EE7D914D6C7FF -45B9C528D26D13399A07F9FFE79576924709B1DEB991862372B4AFB185869893 -0 +B1FEB2318218F5AC9CA5E5CEC9B32A557ED81934709392767D2FA8C2E4453CA7 +3 diff --git a/tools/legal-review/engine/report-state b/tools/legal-review/engine/report-state index 769657194d34..944160d5c728 100644 --- a/tools/legal-review/engine/report-state +++ b/tools/legal-review/engine/report-state @@ -1,3 +1,3 @@ D8B011DD7E11E226FD042DCDEE28B22C5D74D2B7A666346317619CCB487832C4 -0035ED295654FAACCD79D0DA6D2CDDA8E2EC8D0BA9254722FB55C6F622A68B94 -0 +B4092E4B002E6805BC5493117C9015F6B026A087556E4C61B0CA44DCD4EDFC8F +54 diff --git a/tools/legal-review/launcher/report-state b/tools/legal-review/launcher/report-state index 47cbd8faa811..ab2220c474dd 100644 --- a/tools/legal-review/launcher/report-state +++ b/tools/legal-review/launcher/report-state @@ -1,3 +1,3 @@ 7FD6B2CEF25DA9C73D447AAFC64AB53637F764914391B1A08BE19DC78C9A30E8 -BBDB37A47F71427476C52022158EA9E9BC3FF9AEFB6705E2BE56D8AF09A6A621 -0 +B3CE610284A3C4F12E5E0C0B5E00855F1A6C9DA3AEFE99517FD4735E2944CF4E +38 diff --git a/tools/legal-review/license-texts/Go_License b/tools/legal-review/license-texts/Go_License new file mode 100644 index 000000000000..d71c2f1e5ff3 --- /dev/null +++ b/tools/legal-review/license-texts/Go_License @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/legal-review/project-manager/report-state b/tools/legal-review/project-manager/report-state index 5d65f231dd65..2148aa8745b9 100644 --- a/tools/legal-review/project-manager/report-state +++ b/tools/legal-review/project-manager/report-state @@ -1,3 +1,3 @@ 578C28B786B877E41559F52CBDFBF45DE798CEB12FDF9632A93CC4B1B30C72C6 -D1B18FEE4514908AD689F9B25D7E4445E5F3D75296F136BED478DB855D891F88 -0 +6CAD27DB2DC8213B675ADB97FFF37E474A7F8B81E80538F871042F36A73111D4 +59 From 18311b0b5124375edea86e307e5d49663d3dcf67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Tue, 6 Feb 2024 17:39:12 +0100 Subject: [PATCH 14/17] faster dropdown in helper tool --- project/src/main/scala/licenses/report/HTMLWriter.scala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/src/main/scala/licenses/report/HTMLWriter.scala b/project/src/main/scala/licenses/report/HTMLWriter.scala index efc0e60f2579..45c27dfd01a0 100644 --- a/project/src/main/scala/licenses/report/HTMLWriter.scala +++ b/project/src/main/scala/licenses/report/HTMLWriter.scala @@ -37,7 +37,10 @@ class HTMLWriter(bufferedWriter: BufferedWriter) { |$$( function() { | $$( ".accordion" ).accordion({ | active: false, - | collapsible: true + | collapsible: true, + | animate: { + | duration: 100 + | } | }); |}); | From c9b1264ebad3872d4b9149bbb9a4a56057cacd5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Wed, 7 Feb 2024 13:53:47 +0100 Subject: [PATCH 15/17] update reviews --- .../files-ignore | 1 - tools/legal-review/AWS/report-state | 2 +- .../copyright-ignore | 6 ---- .../copyright-keep | 2 -- .../custom-license | 1 + .../files-add/BSD-3-LICENSE.txt | 27 +++++++++++++++++ .../com.google.api.gax-2.39.0/custom-license | 1 + .../files-add/BSD-3-LICENSE.txt | 27 +++++++++++++++++ .../custom-license | 1 + .../files-add/BSD-3-LICENSE.txt | 27 +++++++++++++++++ .../custom-license | 1 + .../files-add/BSD-3-LICENSE.txt | 27 +++++++++++++++++ .../copyright-keep | 8 +++++ .../copyright-ignore | 4 +++ .../copyright-keep | 2 ++ .../copyright-keep-context | 1 + .../copyright-ignore | 4 +++ .../copyright-keep | 11 +++++++ .../copyright-keep-context | 1 + .../copyright-keep | 11 +++++++ .../copyright-ignore | 1 + .../copyright-keep} | 2 -- .../copyright-keep-context | 3 ++ .../copyright-keep | 2 -- .../copyright-keep} | 1 + .../copyright-keep-context} | 0 .../copyright-keep} | 5 +++- .../copyright-keep-context} | 2 +- .../files-ignore | 0 .../copyright-add | 2 +- .../copyright-ignore | 0 .../copyright-keep | 0 .../copyright-keep | 0 .../copyright-keep | 0 .../copyright-keep | 0 .../copyright-ignore | 1 + .../copyright-keep-context | 1 + .../copyright-keep-context | 1 + .../copyright-ignore | 1 - .../copyright-keep | 1 - .../io.grpc.grpc-alts-1.60.0/copyright-keep | 3 ++ .../copyright-keep-context | 1 + .../io.grpc.grpc-api-1.60.0/copyright-keep | 10 +++++++ .../copyright-keep-context | 1 + .../copyright-keep | 3 +- .../copyright-keep-context | 1 + .../io.grpc.grpc-context-1.60.0/files-ignore | 1 + .../io.grpc.grpc-context-1.60.0/files-keep | 2 ++ .../io.grpc.grpc-core-1.60.0/copyright-keep | 9 ++++++ .../copyright-keep-context | 1 + .../copyright-keep | 1 + .../copyright-keep-context | 1 + .../io.grpc.grpc-grpclb-1.60.0/copyright-keep | 4 +++ .../copyright-keep-context | 1 + .../copyright-keep | 3 ++ .../copyright-keep-context | 1 + .../files-ignore | 1 + .../files-keep | 2 ++ .../copyright-keep | 4 +++ .../copyright-keep-context | 1 + .../copyright-keep | 1 + .../copyright-keep-context | 1 + .../copyright-keep | 6 ++++ .../copyright-keep-context | 3 ++ .../io.grpc.grpc-stub-1.60.0/copyright-keep | 6 ++++ .../copyright-keep-context | 1 + .../io.grpc.grpc-util-1.60.0/copyright-keep | 7 +++++ .../copyright-keep-context | 1 + .../io.grpc.grpc-xds-1.60.0/copyright-keep | 5 ++++ .../copyright-keep-context | 1 + .../files-ignore | 1 + .../files-keep | 1 + .../copyright-keep | 1 + .../copyright-keep-context | 1 + .../copyright-ignore | 5 ++++ .../copyright-keep-context | 2 ++ .../custom-license | 1 + .../files-keep | 0 .../files-keep | 1 - .../copyright-ignore | 0 .../copyright-keep | 1 - .../custom-license | 1 - .../files-keep | 2 -- .../copyright-ignore} | 0 .../custom-license | 1 - .../custom-license | 0 .../files-keep | 1 - .../copyright-ignore | 2 ++ .../copyright-keep-context | 2 ++ .../custom-license | 1 + .../files-add/BSD-3-LICENSE.txt | 29 +++++++++++++++++++ tools/legal-review/Google_Api/report-state | 4 +-- .../Google_Api/reviewed-licenses/BSD-3-Clause | 1 + tools/legal-review/Table/report-state | 4 +-- tools/legal-review/engine/report-state | 4 +-- tools/legal-review/launcher/report-state | 4 +-- .../legal-review/project-manager/report-state | 4 +-- 97 files changed, 307 insertions(+), 38 deletions(-) delete mode 100644 tools/legal-review/AWS/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore delete mode 100644 tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-ignore delete mode 100644 tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/custom-license create mode 100644 tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/files-add/BSD-3-LICENSE.txt create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-2.39.0/custom-license create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-2.39.0/files-add/BSD-3-LICENSE.txt create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/custom-license create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/files-add/BSD-3-LICENSE.txt create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/custom-license create mode 100644 tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/files-add/BSD-3-LICENSE.txt create mode 100644 tools/legal-review/Google_Api/com.google.api.grpc.proto-google-common-protos-2.30.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.auto.value.auto-value-annotations-1.10.4/copyright-keep create mode 100644 tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-ignore rename tools/legal-review/Google_Api/{com.google.code.gson.gson-2.9.0/copyright-ignore => com.google.code.gson.gson-2.10.1/copyright-keep} (75%) create mode 100644 tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep-context delete mode 100644 tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-keep rename tools/legal-review/Google_Api/{com.google.errorprone.error_prone_annotations-2.11.0/copyright-ignore => com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep} (80%) rename tools/legal-review/Google_Api/{com.google.errorprone.error_prone_annotations-2.11.0/copyright-keep => com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep-context} (100%) rename tools/legal-review/Google_Api/{com.google.guava.guava-31.1-jre/copyright-ignore => com.google.guava.guava-32.1.3-jre/copyright-keep} (76%) rename tools/legal-review/Google_Api/{com.google.guava.guava-31.1-jre/copyright-keep => com.google.guava.guava-32.1.3-jre/copyright-keep-context} (68%) rename tools/legal-review/Google_Api/{org.apache.httpcomponents.httpclient-4.5.13 => com.google.guava.guava-32.1.3-jre}/files-ignore (100%) rename tools/legal-review/Google_Api/{com.google.http-client.google-http-client-1.42.0 => com.google.http-client.google-http-client-1.43.3}/copyright-ignore (100%) rename tools/legal-review/Google_Api/{com.google.http-client.google-http-client-1.42.0 => com.google.http-client.google-http-client-1.43.3}/copyright-keep (100%) rename tools/legal-review/Google_Api/{com.google.http-client.google-http-client-apache-v2-1.42.0 => com.google.http-client.google-http-client-apache-v2-1.42.3}/copyright-keep (100%) rename tools/legal-review/Google_Api/{com.google.http-client.google-http-client-gson-1.42.0 => com.google.http-client.google-http-client-gson-1.43.3}/copyright-keep (100%) rename tools/legal-review/Google_Api/{com.google.j2objc.j2objc-annotations-1.3 => com.google.j2objc.j2objc-annotations-2.8}/copyright-keep (100%) create mode 100644 tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-ignore create mode 100644 tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-util-3.25.1/copyright-keep-context delete mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-ignore delete mode 100644 tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep-context rename tools/legal-review/Google_Api/{io.grpc.grpc-context-1.27.2 => io.grpc.grpc-auth-1.60.0}/copyright-keep (66%) create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-ignore create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-ignore create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-ignore create mode 100644 tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-keep create mode 100644 tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep create mode 100644 tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/copyright-ignore create mode 100644 tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/custom-license rename tools/legal-review/Google_Api/{org.checkerframework.checker-qual-3.12.0 => javax.annotation.javax.annotation-api-1.3.2}/files-keep (100%) delete mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.13/files-keep rename tools/legal-review/Google_Api/{org.apache.httpcomponents.httpclient-4.5.13 => org.apache.httpcomponents.httpclient-4.5.14}/copyright-ignore (100%) delete mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.15/copyright-keep delete mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.15/custom-license delete mode 100644 tools/legal-review/Google_Api/org.apache.httpcomponents.httpcore-4.4.15/files-keep rename tools/legal-review/Google_Api/{commons-codec.commons-codec-1.11/copyright-keep-context => org.apache.httpcomponents.httpcore-4.4.16/copyright-ignore} (100%) delete mode 100644 tools/legal-review/Google_Api/org.checkerframework.checker-qual-3.12.0/custom-license rename tools/legal-review/Google_Api/{commons-codec.commons-codec-1.11 => org.checkerframework.checker-qual-3.40.0}/custom-license (100%) rename tools/legal-review/Google_Api/{commons-codec.commons-codec-1.11 => org.checkerframework.checker-qual-3.40.0}/files-keep (51%) create mode 100644 tools/legal-review/Google_Api/org.codehaus.mojo.animal-sniffer-annotations-1.23/copyright-ignore create mode 100644 tools/legal-review/Google_Api/org.codehaus.mojo.animal-sniffer-annotations-1.23/copyright-keep-context create mode 100644 tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/custom-license create mode 100644 tools/legal-review/Google_Api/org.threeten.threetenbp-1.6.8/files-add/BSD-3-LICENSE.txt create mode 100644 tools/legal-review/Google_Api/reviewed-licenses/BSD-3-Clause diff --git a/tools/legal-review/AWS/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore b/tools/legal-review/AWS/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore deleted file mode 100644 index 8058ba1fb0e7..000000000000 --- a/tools/legal-review/AWS/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore +++ /dev/null @@ -1 +0,0 @@ -/FasterXML/jackson-dataformats-binary/blob/2.17/LICENSE diff --git a/tools/legal-review/AWS/report-state b/tools/legal-review/AWS/report-state index 35aa04df9265..cbf55afbcb6a 100644 --- a/tools/legal-review/AWS/report-state +++ b/tools/legal-review/AWS/report-state @@ -1,3 +1,3 @@ 79F8085006CADBE1F915455506E1CDEB9A27B8B59EDFCA78FAA3218A3296DE62 6F5A08E5432F0B0C17A5CFC28207781B7C39E85B120D4F74B9B6AA35FF80E8C0 -2 +0 diff --git a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-ignore b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-ignore deleted file mode 100644 index 26ea0b2ade26..000000000000 --- a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-ignore +++ /dev/null @@ -1,6 +0,0 @@ -Copyright 2011 Google Inc. -Copyright 2012 Google Inc. -Copyright 2013 Google Inc. -Copyright 2014 Google Inc. -Copyright 2015 Google Inc. -copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-keep b/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-keep deleted file mode 100644 index f698e3520395..000000000000 --- a/tools/legal-review/Google_Api/com.google.api-client.google-api-client-1.35.2/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright 2010 Google Inc. -Copyright 2020 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/custom-license b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/custom-license new file mode 100644 index 000000000000..310ddfe64c4f --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/custom-license @@ -0,0 +1 @@ +BSD-3-LICENSE.txt \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/files-add/BSD-3-LICENSE.txt b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/files-add/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.api-common-2.22.0/files-add/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/custom-license b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/custom-license new file mode 100644 index 000000000000..310ddfe64c4f --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/custom-license @@ -0,0 +1 @@ +BSD-3-LICENSE.txt \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/files-add/BSD-3-LICENSE.txt b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/files-add/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-2.39.0/files-add/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/custom-license b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/custom-license new file mode 100644 index 000000000000..310ddfe64c4f --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/custom-license @@ -0,0 +1 @@ +BSD-3-LICENSE.txt \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/files-add/BSD-3-LICENSE.txt b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/files-add/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-grpc-2.39.0/files-add/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/custom-license b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/custom-license new file mode 100644 index 000000000000..310ddfe64c4f --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/custom-license @@ -0,0 +1 @@ +BSD-3-LICENSE.txt \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/files-add/BSD-3-LICENSE.txt b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/files-add/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.gax-httpjson-2.39.0/files-add/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-common-protos-2.30.0/copyright-keep b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-common-protos-2.30.0/copyright-keep new file mode 100644 index 000000000000..58857bd9c34e --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.api.grpc.proto-google-common-protos-2.30.0/copyright-keep @@ -0,0 +1,8 @@ +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2019 Google LLC. +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2021 Google LLC. +Copyright 2022 Google LLC +Copyright 2023 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-ignore new file mode 100644 index 000000000000..081db6541575 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-ignore @@ -0,0 +1,4 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep new file mode 100644 index 000000000000..abf9c765d074 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep @@ -0,0 +1,2 @@ +Copyright 2016, Google Inc. All rights reserved. +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep-context new file mode 100644 index 000000000000..94ad8012dd57 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-credentials-1.21.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2015, Google Inc. All rights reserved. diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-ignore new file mode 100644 index 000000000000..081db6541575 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-ignore @@ -0,0 +1,4 @@ +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep new file mode 100644 index 000000000000..68c7cf620a96 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep @@ -0,0 +1,11 @@ +Copyright 2015, Google Inc. All rights reserved. +Copyright 2017, Google Inc. All rights reserved. +Copyright 2018, Google Inc. All rights reserved. +Copyright 2019, Google Inc. All rights reserved. +Copyright 2019, Google LLC +Copyright 2020, Google LLC +Copyright 2021 Google LLC +Copyright 2023, Google Inc. All rights reserved. +Copyright 2023 Google LLC +Copyright 2022, Google Inc. All rights reserved. +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep-context b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep-context new file mode 100644 index 000000000000..41d2f8e7794b --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auth.google-auth-library-oauth2-http-1.21.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2016, Google Inc. All rights reserved. diff --git a/tools/legal-review/Google_Api/com.google.auto.value.auto-value-annotations-1.10.4/copyright-keep b/tools/legal-review/Google_Api/com.google.auto.value.auto-value-annotations-1.10.4/copyright-keep new file mode 100644 index 000000000000..5b37bd68cff0 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.auto.value.auto-value-annotations-1.10.4/copyright-keep @@ -0,0 +1,11 @@ +Copyright 2012 Google LLC +Copyright 2013 Google LLC +Copyright 2014 Google LLC +Copyright 2015 Google LLC +Copyright 2016 Google LLC +Copyright 2017 Google LLC +Copyright 2018 Google LLC +Copyright 2019 Google LLC +Copyright 2020 Google LLC +Copyright 2021 Google LLC +Copyright 2022 Google LLC diff --git a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-ignore b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-ignore new file mode 100644 index 000000000000..f0ba22710ab1 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-ignore @@ -0,0 +1 @@ +Copyright (C) 2008 Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep similarity index 75% rename from tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-ignore rename to tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep index ffc8057bdb8c..f6cebf9ed108 100644 --- a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-ignore +++ b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep @@ -1,8 +1,6 @@ -Copyright (C) 2009 Google Inc. Copyright (C) 2010 Google Inc. Copyright (C) 2011 Google Inc. Copyright (C) 2012 Google Inc. Copyright (C) 2014 Google Inc. Copyright (C) 2018 The Gson authors Copyright (C) 2020 Google Inc. -Copyright (C) 2021 Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep-context b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep-context new file mode 100644 index 000000000000..311589f6dca0 --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.10.1/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (C) 2009 Google Inc. +Copyright (C) 2017 The Gson authors +Copyright (C) 2021 Google Inc. diff --git a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-keep b/tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-keep deleted file mode 100644 index 90292e98fe16..000000000000 --- a/tools/legal-review/Google_Api/com.google.code.gson.gson-2.9.0/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (C) 2008 Google Inc. -Copyright (C) 2017 The Gson authors diff --git a/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.11.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep similarity index 80% rename from tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.11.0/copyright-ignore rename to tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep index 79882ebfb1c5..a36dbcab5908 100644 --- a/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.11.0/copyright-ignore +++ b/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep @@ -2,3 +2,4 @@ Copyright 2015 The Error Prone Authors. Copyright 2016 The Error Prone Authors. Copyright 2017 The Error Prone Authors. Copyright 2021 The Error Prone Authors. +Copyright 2023 The Error Prone Authors. diff --git a/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.11.0/copyright-keep b/tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep-context similarity index 100% rename from tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.11.0/copyright-keep rename to tools/legal-review/Google_Api/com.google.errorprone.error_prone_annotations-2.23.0/copyright-keep-context diff --git a/tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-ignore b/tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep similarity index 76% rename from tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-ignore rename to tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep index bd639b9f693a..68acee6c3bee 100644 --- a/tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-ignore +++ b/tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep @@ -1,3 +1,5 @@ +Copyright 2011 Google Inc. All Rights Reserved. +domain. The author hereby disclaims copyright to this source code. Copyright (C) 2006 The Guava Authors Copyright (C) 2007 The Guava Authors Copyright (C) 2008 The Guava Authors @@ -15,4 +17,5 @@ Copyright (C) 2018 The Guava Authors Copyright (C) 2019 The Guava Authors Copyright (C) 2020 The Guava Authors Copyright (C) 2021 The Guava Authors -hereby disclaims copyright to this source code. +Copyright 2011 Google Inc. All Rights Reserved. +Copyright 2019 The Guava Authors diff --git a/tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-keep b/tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep-context similarity index 68% rename from tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-keep rename to tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep-context index c5a0dab45381..a2d63b98e8f6 100644 --- a/tools/legal-review/Google_Api/com.google.guava.guava-31.1-jre/copyright-keep +++ b/tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/copyright-keep-context @@ -1,3 +1,3 @@ Copyright (C) 2005 The Guava Authors -Copyright 2011 Google Inc. All Rights Reserved. domain. The author hereby disclaims copyright to this source code. +hereby disclaims copyright to this source code. diff --git a/tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.13/files-ignore b/tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/files-ignore similarity index 100% rename from tools/legal-review/Google_Api/org.apache.httpcomponents.httpclient-4.5.13/files-ignore rename to tools/legal-review/Google_Api/com.google.guava.guava-32.1.3-jre/files-ignore diff --git a/tools/legal-review/Google_Api/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add b/tools/legal-review/Google_Api/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add index 0c178638bbbc..6e6d432c999d 100644 --- a/tools/legal-review/Google_Api/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add +++ b/tools/legal-review/Google_Api/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add @@ -1 +1 @@ -See com.google.guava.guava-29.0-jre for licensing information. +See com.google.guava.guava-32.1.3-jre for licensing information. diff --git a/tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.42.0/copyright-ignore b/tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.43.3/copyright-ignore similarity index 100% rename from tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.42.0/copyright-ignore rename to tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.43.3/copyright-ignore diff --git a/tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.42.0/copyright-keep b/tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.43.3/copyright-keep similarity index 100% rename from tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.42.0/copyright-keep rename to tools/legal-review/Google_Api/com.google.http-client.google-http-client-1.43.3/copyright-keep diff --git a/tools/legal-review/Google_Api/com.google.http-client.google-http-client-apache-v2-1.42.0/copyright-keep b/tools/legal-review/Google_Api/com.google.http-client.google-http-client-apache-v2-1.42.3/copyright-keep similarity index 100% rename from tools/legal-review/Google_Api/com.google.http-client.google-http-client-apache-v2-1.42.0/copyright-keep rename to tools/legal-review/Google_Api/com.google.http-client.google-http-client-apache-v2-1.42.3/copyright-keep diff --git a/tools/legal-review/Google_Api/com.google.http-client.google-http-client-gson-1.42.0/copyright-keep b/tools/legal-review/Google_Api/com.google.http-client.google-http-client-gson-1.43.3/copyright-keep similarity index 100% rename from tools/legal-review/Google_Api/com.google.http-client.google-http-client-gson-1.42.0/copyright-keep rename to tools/legal-review/Google_Api/com.google.http-client.google-http-client-gson-1.43.3/copyright-keep diff --git a/tools/legal-review/Google_Api/com.google.j2objc.j2objc-annotations-1.3/copyright-keep b/tools/legal-review/Google_Api/com.google.j2objc.j2objc-annotations-2.8/copyright-keep similarity index 100% rename from tools/legal-review/Google_Api/com.google.j2objc.j2objc-annotations-1.3/copyright-keep rename to tools/legal-review/Google_Api/com.google.j2objc.j2objc-annotations-2.8/copyright-keep diff --git a/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-ignore b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-ignore new file mode 100644 index 000000000000..ad135c00132e --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-ignore @@ -0,0 +1 @@ +Copyright 2008 Google Inc. All rights reserved. diff --git a/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-keep-context b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-keep-context new file mode 100644 index 000000000000..ad135c00132e --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-3.25.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2008 Google Inc. All rights reserved. diff --git a/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-util-3.25.1/copyright-keep-context b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-util-3.25.1/copyright-keep-context new file mode 100644 index 000000000000..ad135c00132e --- /dev/null +++ b/tools/legal-review/Google_Api/com.google.protobuf.protobuf-java-util-3.25.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2008 Google Inc. All rights reserved. diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-ignore b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-ignore deleted file mode 100644 index 8cd8d66408c4..000000000000 --- a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-keep b/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-keep deleted file mode 100644 index 6ab681a5b3bd..000000000000 --- a/tools/legal-review/Google_Api/commons-codec.commons-codec-1.11/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Some portions of this file Copyright (c) 2004-2006 Intel Corportation diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep new file mode 100644 index 000000000000..c8058b07a495 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep @@ -0,0 +1,3 @@ +Copyright 2019 The gRPC Authors +Copyright 2020 The gRPC Authors +Copyright 2021 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..9efb59a59eed --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-alts-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2018 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep new file mode 100644 index 000000000000..76b6a9475797 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep @@ -0,0 +1,10 @@ +Copyright 2015 The gRPC Authors +Copyright 2016 The gRPC Authors +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2018, gRPC Authors All rights reserved. +Copyright 2019 The gRPC Authors +Copyright 2020 The gRPC Authors +Copyright 2021 The gRPC Authors +Copyright 2022 The gRPC Authors +Copyright 2023 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-api-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-context-1.27.2/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep similarity index 66% rename from tools/legal-review/Google_Api/io.grpc.grpc-context-1.27.2/copyright-keep rename to tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep index af62857629db..271565b64326 100644 --- a/tools/legal-review/Google_Api/io.grpc.grpc-context-1.27.2/copyright-keep +++ b/tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep @@ -1,3 +1,2 @@ -Copyright 2015 The gRPC Authors -Copyright 2017 The gRPC Authors Copyright 2016 The gRPC Authors +Copyright 2017 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-auth-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-ignore b/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-ignore new file mode 100644 index 000000000000..1daa5d54bae1 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-ignore @@ -0,0 +1 @@ +/grpc/grpc-java/blob/master/LICENSE diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-keep b/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-keep new file mode 100644 index 000000000000..719e602f6962 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-context-1.60.0/files-keep @@ -0,0 +1,2 @@ +/grpc/grpc-java/blob/master/AUTHORS +/grpc/grpc-java/blob/master/NOTICE.txt diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep new file mode 100644 index 000000000000..0c4a05fc4064 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep @@ -0,0 +1,9 @@ +Copyright 2015 The gRPC Authors +Copyright 2016 The gRPC Authors +Copyright 2016,2022 The gRPC Authors +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2019 The gRPC Authors +Copyright 2020 The gRPC Authors +Copyright 2021 The gRPC Authors +Copyright 2023 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-core-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep new file mode 100644 index 000000000000..5c3d7763ad4c --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep @@ -0,0 +1 @@ +Copyright 2022 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..dbbd6085d858 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-googleapis-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2021 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep new file mode 100644 index 000000000000..ad03585f0c45 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep @@ -0,0 +1,4 @@ +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2019 The gRPC Authors +Copyright 2020 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..7ae4518febd5 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-grpclb-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2016 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep new file mode 100644 index 000000000000..22a2b50dd755 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep @@ -0,0 +1,3 @@ +Copyright 2016 The gRPC Authors +Copyright 2020 The gRPC Authors +Copyright 2021 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..fa3268327a95 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-inprocess-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2015 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-ignore b/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-ignore new file mode 100644 index 000000000000..1daa5d54bae1 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-ignore @@ -0,0 +1 @@ +/grpc/grpc-java/blob/master/LICENSE diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-keep b/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-keep new file mode 100644 index 000000000000..719e602f6962 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-netty-shaded-1.60.0/files-keep @@ -0,0 +1,2 @@ +/grpc/grpc-java/blob/master/AUTHORS +/grpc/grpc-java/blob/master/NOTICE.txt diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep new file mode 100644 index 000000000000..e396f7f93038 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep @@ -0,0 +1,4 @@ +Copyright 2014 The gRPC Authors +Copyright 2016 The gRPC Authors +Copyright 2017 The gRPC Authors +Copyright 2017 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep new file mode 100644 index 000000000000..0409787ec19f --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep @@ -0,0 +1 @@ +Copyright 2017 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-protobuf-lite-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep new file mode 100644 index 000000000000..8bfc3cafb572 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep @@ -0,0 +1,6 @@ +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2020 The gRPC Authors +Copyright 2021 The gRPC Authors +Copyright 2022 The gRPC Authors +Copyright 2023 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..8c6a49b29634 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-services-1.60.0/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright 2016 The gRPC Authors +Copyright 2018, gRPC Authors All rights reserved. +Copyright 2019 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep new file mode 100644 index 000000000000..eaf228e044ea --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep @@ -0,0 +1,6 @@ +Copyright 2015 The gRPC Authors +Copyright 2016 The gRPC Authors +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2019 The gRPC Authors +Copyright 2021 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-stub-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep new file mode 100644 index 000000000000..d64547ceacc0 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep @@ -0,0 +1,7 @@ +Copyright 2016 The gRPC Authors +Copyright 2017 The gRPC Authors +Copyright 2018 The gRPC Authors +Copyright 2019 The gRPC Authors +Copyright 2021 The gRPC Authors +Copyright 2022 The gRPC Authors +Copyright 2023 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..652092d28827 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-util-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep b/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep new file mode 100644 index 000000000000..1504a7ed2057 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep @@ -0,0 +1,5 @@ +Copyright 2020 The gRPC Authors +Copyright 2021 Higher Frequency Trading http://www.higherfrequencytrading.com +Copyright 2021 The gRPC Authors +Copyright 2022 The gRPC Authors +Copyright 2023 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep-context b/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep-context new file mode 100644 index 000000000000..fcc98c592063 --- /dev/null +++ b/tools/legal-review/Google_Api/io.grpc.grpc-xds-1.60.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2019 The gRPC Authors diff --git a/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-ignore b/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-ignore new file mode 100644 index 000000000000..8f0f0acf3fad --- /dev/null +++ b/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-ignore @@ -0,0 +1 @@ +/census-instrumentation/opencensus-proto/blob/master/LICENSE diff --git a/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-keep b/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-keep new file mode 100644 index 000000000000..812786638c74 --- /dev/null +++ b/tools/legal-review/Google_Api/io.opencensus.opencensus-proto-0.2.0/files-keep @@ -0,0 +1 @@ +/census-instrumentation/opencensus-proto/blob/master/AUTHORS diff --git a/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep b/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep new file mode 100644 index 000000000000..8d895827c0fc --- /dev/null +++ b/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep @@ -0,0 +1 @@ +Copyright 2020 Google LLC diff --git a/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep-context b/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep-context new file mode 100644 index 000000000000..172cb67a1ecd --- /dev/null +++ b/tools/legal-review/Google_Api/io.perfmark.perfmark-api-0.26.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2019 Google LLC diff --git a/tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/copyright-ignore b/tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/copyright-ignore new file mode 100644 index 000000000000..907a9697a060 --- /dev/null +++ b/tools/legal-review/Google_Api/javax.annotation.javax.annotation-api-1.3.2/copyright-ignore @@ -0,0 +1,5 @@ +"Portions Copyright [year] [name of copyright owner]" + Date: Wed, 7 Feb 2024 13:54:04 +0100 Subject: [PATCH 16/17] update generated reports --- .../Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE | 209 ++++++++++++-- .../NOTICES | 15 + .../NOTICES | 15 + .../NOTICES | 3 - .../NOTICES | 37 +++ .../BSD-3-LICENSE.txt | 27 ++ .../com.google.api.api-common-2.22.0/NOTICES | 63 +++++ .../BSD-3-LICENSE.txt | 27 ++ .../com.google.api.gax-2.39.0/NOTICES | 153 ++++++++++ .../BSD-3-LICENSE.txt | 27 ++ .../com.google.api.gax-grpc-2.39.0/NOTICES | 69 +++++ .../BSD-3-LICENSE.txt | 27 ++ .../NOTICES | 67 +++++ .../NOTICES | 15 + .../NOTICES | 15 + .../NOTICES | 15 + .../NOTICES | 34 +++ .../NOTICES | 52 ++++ .../NOTICES | 21 ++ .../com.google.code.gson.gson-2.10.1/NOTICES | 59 ++++ .../com.google.code.gson.gson-2.9.0/NOTICES | 3 - .../NOTICES | 1 - .../NOTICES | 25 ++ .../com.google.guava.guava-31.1-jre/NOTICES | 5 - .../com.google.guava.guava-32.1.3-jre/NOTICES | 65 +++++ .../NOTICES | 2 +- .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 5 + .../NOTICES | 2 + .../com.google.re2j.re2j-1.7/NOTICES | 3 + .../LICENSE.txt | 202 -------------- .../NOTICE.txt | 17 -- .../commons-codec.commons-codec-1.11/NOTICES | 20 -- .../NOTICE.txt | 5 + .../NOTICES | 71 +++++ .../io.grpc.grpc-alts-1.60.0/NOTICES | 21 ++ .../io.grpc.grpc-api-1.60.0/NOTICES | 35 +++ .../io.grpc.grpc-auth-1.60.0/NOTICES | 19 ++ .../io.grpc.grpc-context-1.27.2/NOTICES | 5 - .../io.grpc.grpc-context-1.60.0/AUTHORS | 1 + .../io.grpc.grpc-context-1.60.0/NOTICE.txt | 62 +++++ .../io.grpc.grpc-core-1.60.0/NOTICES | 33 +++ .../io.grpc.grpc-googleapis-1.60.0/NOTICES | 17 ++ .../io.grpc.grpc-grpclb-1.60.0/NOTICES | 23 ++ .../io.grpc.grpc-inprocess-1.60.0/NOTICES | 21 ++ .../io.grpc.grpc-netty-shaded-1.60.0/AUTHORS | 1 + .../NOTICE.txt | 62 +++++ .../io.grpc.grpc-protobuf-1.60.0/NOTICES | 37 +++ .../io.grpc.grpc-protobuf-lite-1.60.0/NOTICES | 17 ++ .../io.grpc.grpc-services-1.60.0/NOTICES | 59 ++++ .../io.grpc.grpc-stub-1.60.0/NOTICES | 27 ++ .../io.grpc.grpc-util-1.60.0/NOTICES | 29 ++ .../io.grpc.grpc-xds-1.60.0/NOTICES | 25 ++ .../AUTHORS | 1 + .../io.perfmark.perfmark-api-0.26.0/NOTICES | 17 ++ .../LICENSE.txt | 263 ++++++++++++++++++ .../NOTICES | 45 +++ .../THIRD-PARTY/licenses/BSD-3-Clause | 9 + .../0.0.0-dev/THIRD-PARTY/licenses/Go_License | 27 ++ .../0.0.0-dev/THIRD-PARTY/licenses/MIT | 6 + .../NOTICE | 2 +- .../LICENSE | 202 -------------- .../NOTICES | 1 - .../NOTICE | 2 +- .../LICENSE.txt | 0 .../NOTICES | 30 ++ .../NOTICES | 108 +++++++ .../BSD-3-LICENSE.txt | 29 ++ .../org.threeten.threetenbp-1.6.8/NOTICES | 31 +++ 72 files changed, 2164 insertions(+), 479 deletions(-) create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.analytics.google-analytics-data-0.44.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.android.annotations-4.1.1.4/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-1.35.2/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-2.2.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/BSD-3-LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/BSD-3-LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/BSD-3-LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/BSD-3-LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-common-protos-2.30.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-credentials-1.21.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-oauth2-http-1.21.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auto.value.auto-value-annotations-1.10.4/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.10.1/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.9.0/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.23.0/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-32.1.3-jre/NOTICES rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{com.google.http-client.google-http-client-1.42.0 => com.google.http-client.google-http-client-1.43.3}/NOTICES (100%) rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{com.google.http-client.google-http-client-apache-v2-1.42.0 => com.google.http-client.google-http-client-apache-v2-1.42.3}/NOTICES (100%) rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{com.google.http-client.google-http-client-gson-1.42.0 => com.google.http-client.google-http-client-gson-1.43.3}/NOTICES (100%) rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{com.google.j2objc.j2objc-annotations-1.3 => com.google.j2objc.j2objc-annotations-2.8}/NOTICES (100%) create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-3.25.1/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-util-3.25.1/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.re2j.re2j-1.7/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/LICENSE.txt delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICE.txt delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-alts-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-api-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-auth-1.60.0/NOTICES delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.27.2/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/AUTHORS create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/NOTICE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-core-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-googleapis-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-grpclb-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-inprocess-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/AUTHORS create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/NOTICE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-lite-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-services-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-stub-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-util-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-xds-1.60.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.opencensus.opencensus-proto-0.2.0/AUTHORS create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.perfmark.perfmark-api-0.26.0/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/BSD-3-Clause create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/Go_License create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/MIT rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{org.apache.httpcomponents.httpclient-4.5.13 => org.apache.httpcomponents.httpclient-4.5.14}/NOTICE (70%) delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/LICENSE delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICES rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{org.apache.httpcomponents.httpcore-4.4.15 => org.apache.httpcomponents.httpcore-4.4.16}/NOTICE (70%) rename distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/{org.checkerframework.checker-qual-3.12.0 => org.checkerframework.checker-qual-3.40.0}/LICENSE.txt (100%) create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.codehaus.mojo.animal-sniffer-annotations-1.23/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.conscrypt.conscrypt-openjdk-uber-2.5.2/NOTICES create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/BSD-3-LICENSE.txt create mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/NOTICES diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE index 8df68f481ebe..54c581a90dca 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE @@ -1,9 +1,54 @@ Enso Copyright 2020 - 2024 New Byte Order sp. z o. o. +'google-analytics-data', licensed under the Apache-2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.analytics.google-analytics-data-0.44.0`. + + +'annotations', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.android.annotations-4.1.1.4`. + + 'google-api-client', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.api-client.google-api-client-1.35.2`. +Copyright notices related to this dependency can be found in the directory `com.google.api-client.google-api-client-2.2.0`. + + +'api-common', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.google.api.api-common-2.22.0`. + + +'gax', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.google.api.gax-2.39.0`. + + +'gax-grpc', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.google.api.gax-grpc-2.39.0`. + + +'gax-httpjson', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.google.api.gax-httpjson-2.39.0`. + + +'proto-google-analytics-data-v1alpha', licensed under the Apache-2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0`. + + +'proto-google-analytics-data-v1beta', licensed under the Apache-2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0`. + + +'proto-google-common-protos', licensed under the Apache-2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.api.grpc.proto-google-common-protos-2.30.0`. 'google-api-services-sheets', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. @@ -11,6 +56,21 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.google.apis.google-api-services-sheets-v4-rev612-1.25.0`. +'google-auth-library-credentials', licensed under the BSD New license, is distributed with the Google_Api. +The license file can be found at `licenses/BSD-3-Clause`. +Copyright notices related to this dependency can be found in the directory `com.google.auth.google-auth-library-credentials-1.21.0`. + + +'google-auth-library-oauth2-http', licensed under the BSD New license, is distributed with the Google_Api. +The license file can be found at `licenses/BSD-3-Clause`. +Copyright notices related to this dependency can be found in the directory `com.google.auth.google-auth-library-oauth2-http-1.21.0`. + + +'auto-value-annotations', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `com.google.auto.value.auto-value-annotations-1.10.4`. + + 'jsr305', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.google.code.findbugs.jsr305-3.0.2`. @@ -18,12 +78,12 @@ Copyright notices related to this dependency can be found in the directory `com. 'gson', licensed under the Apache-2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.code.gson.gson-2.9.0`. +Copyright notices related to this dependency can be found in the directory `com.google.code.gson.gson-2.10.1`. 'error_prone_annotations', licensed under the Apache 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.errorprone.error_prone_annotations-2.11.0`. +Copyright notices related to this dependency can be found in the directory `com.google.errorprone.error_prone_annotations-2.23.0`. 'failureaccess', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. @@ -33,7 +93,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'guava', licensed under the Apache License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.guava.guava-31.1-jre`. +Copyright notices related to this dependency can be found in the directory `com.google.guava.guava-32.1.3-jre`. 'listenablefuture', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. @@ -43,22 +103,22 @@ Copyright notices related to this dependency can be found in the directory `com. 'google-http-client', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-1.42.0`. +Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-1.43.3`. 'google-http-client-apache-v2', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-apache-v2-1.42.0`. +Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-apache-v2-1.42.3`. 'google-http-client-gson', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-gson-1.42.0`. +Copyright notices related to this dependency can be found in the directory `com.google.http-client.google-http-client-gson-1.43.3`. -'j2objc-annotations', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. +'j2objc-annotations', licensed under the Apache License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.j2objc.j2objc-annotations-1.3`. +Copyright notices related to this dependency can be found in the directory `com.google.j2objc.j2objc-annotations-2.8`. 'google-oauth-client', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. @@ -66,9 +126,24 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.google.oauth-client.google-oauth-client-1.34.1`. -'commons-codec', licensed under the Apache License, Version 2.0, is distributed with the Google_Api. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `commons-codec.commons-codec-1.11`. +'protobuf-java', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license file can be found at `licenses/BSD-3-Clause`. +Copyright notices related to this dependency can be found in the directory `com.google.protobuf.protobuf-java-3.25.1`. + + +'protobuf-java-util', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license file can be found at `licenses/BSD-3-Clause`. +Copyright notices related to this dependency can be found in the directory `com.google.protobuf.protobuf-java-util-3.25.1`. + + +'re2j', licensed under the Go License, is distributed with the Google_Api. +The license file can be found at `licenses/Go_License`. +Copyright notices related to this dependency can be found in the directory `com.google.re2j.re2j-1.7`. + + +'commons-codec', licensed under the Apache-2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `commons-codec.commons-codec-1.16.0`. 'commons-logging', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. @@ -76,9 +151,79 @@ The license information can be found along with the copyright notices. Copyright notices related to this dependency can be found in the directory `commons-logging.commons-logging-1.2`. +'grpc-alts', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-alts-1.60.0`. + + +'grpc-api', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-api-1.60.0`. + + +'grpc-auth', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-auth-1.60.0`. + + 'grpc-context', licensed under the Apache 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-context-1.27.2`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-context-1.60.0`. + + +'grpc-core', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-core-1.60.0`. + + +'grpc-googleapis', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-googleapis-1.60.0`. + + +'grpc-grpclb', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-grpclb-1.60.0`. + + +'grpc-inprocess', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-inprocess-1.60.0`. + + +'grpc-netty-shaded', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-netty-shaded-1.60.0`. + + +'grpc-protobuf', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-protobuf-1.60.0`. + + +'grpc-protobuf-lite', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-protobuf-lite-1.60.0`. + + +'grpc-services', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-services-1.60.0`. + + +'grpc-stub', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-stub-1.60.0`. + + +'grpc-util', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-util-1.60.0`. + + +'grpc-xds', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.grpc.grpc-xds-1.60.0`. 'opencensus-api', licensed under the The Apache License, Version 2.0, is distributed with the Google_Api. @@ -91,17 +236,47 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `io.opencensus.opencensus-contrib-http-util-0.31.1`. +'opencensus-proto', licensed under the The Apache License, Version 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.opencensus.opencensus-proto-0.2.0`. + + +'perfmark-api', licensed under the Apache 2.0, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.perfmark.perfmark-api-0.26.0`. + + +'javax.annotation-api', licensed under the CDDL + GPLv2 with classpath exception, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `javax.annotation.javax.annotation-api-1.3.2`. + + 'httpclient', licensed under the Apache License, Version 2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.httpcomponents.httpclient-4.5.13`. +Copyright notices related to this dependency can be found in the directory `org.apache.httpcomponents.httpclient-4.5.14`. 'httpcore', licensed under the Apache License, Version 2.0, is distributed with the Google_Api. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.httpcomponents.httpcore-4.4.15`. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `org.apache.httpcomponents.httpcore-4.4.16`. 'checker-qual', licensed under the The MIT License, is distributed with the Google_Api. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.checkerframework.checker-qual-3.12.0`. +Copyright notices related to this dependency can be found in the directory `org.checkerframework.checker-qual-3.40.0`. + + +'animal-sniffer-annotations', licensed under the MIT license, is distributed with the Google_Api. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.codehaus.mojo.animal-sniffer-annotations-1.23`. + + +'conscrypt-openjdk-uber', licensed under the Apache 2, is distributed with the Google_Api. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `org.conscrypt.conscrypt-openjdk-uber-2.5.2`. + + +'threetenbp', licensed under the BSD-3-Clause, is distributed with the Google_Api. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `org.threeten.threetenbp-1.6.8`. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.analytics.google-analytics-data-0.44.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.analytics.google-analytics-data-0.44.0/NOTICES new file mode 100644 index 000000000000..3509cb7c69e1 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.analytics.google-analytics-data-0.44.0/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.android.annotations-4.1.1.4/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.android.annotations-4.1.1.4/NOTICES new file mode 100644 index 000000000000..040129f86b21 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.android.annotations-4.1.1.4/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright (C) 2012 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-1.35.2/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-1.35.2/NOTICES deleted file mode 100644 index 312d61f561e5..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-1.35.2/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright 2010 Google Inc. - -Copyright 2020 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-2.2.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-2.2.0/NOTICES new file mode 100644 index 000000000000..7d732e7fcd1e --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api-client.google-api-client-2.2.0/NOTICES @@ -0,0 +1,37 @@ +/* + * Copyright 2010 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ + +/* + * Copyright 2020 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ + +Copyright 2011 Google Inc. + +Copyright 2012 Google Inc. + +Copyright 2013 Google Inc. + +Copyright 2014 Google Inc. + +Copyright 2015 Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/BSD-3-LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/NOTICES new file mode 100644 index 000000000000..42eb1ada607a --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.api-common-2.22.0/NOTICES @@ -0,0 +1,63 @@ +/* + * Copyright 2016, Google Inc. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2023, Google Inc. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2017, Google Inc. + +Copyright 2018, Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/BSD-3-LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/NOTICES new file mode 100644 index 000000000000..5e7e34fde3eb --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-2.39.0/NOTICES @@ -0,0 +1,153 @@ +/* + * Copyright 2016 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2016 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2023 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2023 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2017 Google LLC + +Copyright 2017 Google LLC + +Copyright 2017 Google LLC + +Copyright 2018 Google LLC + +Copyright 2018 Google LLC + +Copyright 2018 Google LLC + +Copyright 2019 Google LLC + +Copyright 2019 Google LLC + +Copyright 2020 Google LLC + +Copyright 2020 Google LLC + +Copyright 2020 Google LLC + +Copyright 2021 Google LLC + +Copyright 2021 Google LLC + +Copyright 2021 Google LLC + +Copyright 2022 Google LLC + +Copyright 2022 Google LLC + +Copyright 2022 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/BSD-3-LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/NOTICES new file mode 100644 index 000000000000..0557359d23c4 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-grpc-2.39.0/NOTICES @@ -0,0 +1,69 @@ +/* + * Copyright 2016 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2022 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2017 Google LLC + +Copyright 2018 Google LLC + +Copyright 2019 Google LLC + +Copyright 2020 Google LLC + +Copyright 2021 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/BSD-3-LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..2960d6e5ea03 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/BSD-3-LICENSE.txt @@ -0,0 +1,27 @@ +Copyright 2016, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/NOTICES new file mode 100644 index 000000000000..ca90ebbf9cfa --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.gax-httpjson-2.39.0/NOTICES @@ -0,0 +1,67 @@ +/* + * Copyright 2017 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright 2023 Google LLC + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google LLC nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2018 Google LLC + +Copyright 2020 Google LLC + +Copyright 2021 Google LLC + +Copyright 2022 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/NOTICES new file mode 100644 index 000000000000..25286cf31eed --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1alpha-0.44.0/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/NOTICES new file mode 100644 index 000000000000..25286cf31eed --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-analytics-data-v1beta-0.44.0/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-common-protos-2.30.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-common-protos-2.30.0/NOTICES new file mode 100644 index 000000000000..5f64640465b6 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.api.grpc.proto-google-common-protos-2.30.0/NOTICES @@ -0,0 +1,15 @@ +Copyright 2015 Google LLC + +Copyright 2016 Google LLC + +Copyright 2019 Google LLC. + +Copyright 2020 Google LLC + +Copyright 2021 Google LLC + +Copyright 2021 Google LLC. + +Copyright 2022 Google LLC + +Copyright 2023 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-credentials-1.21.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-credentials-1.21.0/NOTICES new file mode 100644 index 000000000000..98b48c0530cb --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-credentials-1.21.0/NOTICES @@ -0,0 +1,34 @@ +/* + * Copyright 2015, Google Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2016, Google Inc. All rights reserved. + +Copyright 2022 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-oauth2-http-1.21.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-oauth2-http-1.21.0/NOTICES new file mode 100644 index 000000000000..89aeee7d2dfe --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auth.google-auth-library-oauth2-http-1.21.0/NOTICES @@ -0,0 +1,52 @@ +/* + * Copyright 2016, Google Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +Copyright 2015, Google Inc. All rights reserved. + +Copyright 2017, Google Inc. All rights reserved. + +Copyright 2018, Google Inc. All rights reserved. + +Copyright 2019, Google Inc. All rights reserved. + +Copyright 2019, Google LLC + +Copyright 2020, Google LLC + +Copyright 2021 Google LLC + +Copyright 2022 Google LLC + +Copyright 2022, Google Inc. All rights reserved. + +Copyright 2023 Google LLC + +Copyright 2023, Google Inc. All rights reserved. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auto.value.auto-value-annotations-1.10.4/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auto.value.auto-value-annotations-1.10.4/NOTICES new file mode 100644 index 000000000000..647626ac17b0 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.auto.value.auto-value-annotations-1.10.4/NOTICES @@ -0,0 +1,21 @@ +Copyright 2012 Google LLC + +Copyright 2013 Google LLC + +Copyright 2014 Google LLC + +Copyright 2015 Google LLC + +Copyright 2016 Google LLC + +Copyright 2017 Google LLC + +Copyright 2018 Google LLC + +Copyright 2019 Google LLC + +Copyright 2020 Google LLC + +Copyright 2021 Google LLC + +Copyright 2022 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.10.1/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.10.1/NOTICES new file mode 100644 index 000000000000..ffd46b7b71f2 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.10.1/NOTICES @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2009 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright (C) 2017 The Gson authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright (C) 2021 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright (C) 2010 Google Inc. + +Copyright (C) 2011 Google Inc. + +Copyright (C) 2012 Google Inc. + +Copyright (C) 2014 Google Inc. + +Copyright (C) 2018 The Gson authors + +Copyright (C) 2020 Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.9.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.9.0/NOTICES deleted file mode 100644 index e3ff74ff6869..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.gson.gson-2.9.0/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 2008 Google Inc. - -Copyright (C) 2017 The Gson authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES deleted file mode 100644 index 67a1e07330ef..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright 2014 The Error Prone Authors. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.23.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.23.0/NOTICES new file mode 100644 index 000000000000..a48b99a6d4cc --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.23.0/NOTICES @@ -0,0 +1,25 @@ +/* + * Copyright 2014 The Error Prone Authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2015 The Error Prone Authors. + +Copyright 2016 The Error Prone Authors. + +Copyright 2017 The Error Prone Authors. + +Copyright 2021 The Error Prone Authors. + +Copyright 2023 The Error Prone Authors. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES deleted file mode 100644 index bda8dfbb1291..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (C) 2005 The Guava Authors - -Copyright 2011 Google Inc. All Rights Reserved. - -domain. The author hereby disclaims copyright to this source code. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-32.1.3-jre/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-32.1.3-jre/NOTICES new file mode 100644 index 000000000000..7b7d9c13648d --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.guava-32.1.3-jre/NOTICES @@ -0,0 +1,65 @@ + /* + * This method was rewritten in Java from an intermediate step of the Murmur hash function in + * http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp, which contained the + * following header: + * + * MurmurHash3 was written by Austin Appleby, and is placed in the public domain. The author + * hereby disclaims copyright to this source code. + */ + +/* + * Copyright (C) 2005 The Guava Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing permissions and limitations under + * the License. + */ + +/* + * MurmurHash3 was written by Austin Appleby, and is placed in the public + * domain. The author hereby disclaims copyright to this source code. + */ + +Copyright (C) 2006 The Guava Authors + +Copyright (C) 2007 The Guava Authors + +Copyright (C) 2008 The Guava Authors + +Copyright (C) 2009 The Guava Authors + +Copyright (C) 2010 The Guava Authors + +Copyright (C) 2011 The Guava Authors + +Copyright (C) 2011 The Guava Authors. + +Copyright (C) 2012 The Guava Authors + +Copyright (C) 2013 The Guava Authors + +Copyright (C) 2014 The Guava Authors + +Copyright (C) 2015 The Guava Authors + +Copyright (C) 2016 The Guava Authors + +Copyright (C) 2017 The Guava Authors + +Copyright (C) 2018 The Guava Authors + +Copyright (C) 2019 The Guava Authors + +Copyright (C) 2020 The Guava Authors + +Copyright (C) 2021 The Guava Authors + +Copyright 2011 Google Inc. All Rights Reserved. + +Copyright 2019 The Guava Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES index 4ca0b90cd6b6..1ab5d05bc689 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES @@ -1,2 +1,2 @@ -See com.google.guava.guava-29.0-jre for licensing information. +See com.google.guava.guava-32.1.3-jre for licensing information. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-1.42.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-1.43.3/NOTICES similarity index 100% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-1.42.0/NOTICES rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-1.43.3/NOTICES diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-apache-v2-1.42.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-apache-v2-1.42.3/NOTICES similarity index 100% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-apache-v2-1.42.0/NOTICES rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-apache-v2-1.42.3/NOTICES diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-gson-1.42.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-gson-1.43.3/NOTICES similarity index 100% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-gson-1.42.0/NOTICES rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.http-client.google-http-client-gson-1.43.3/NOTICES diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.j2objc.j2objc-annotations-1.3/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.j2objc.j2objc-annotations-2.8/NOTICES similarity index 100% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.j2objc.j2objc-annotations-1.3/NOTICES rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.j2objc.j2objc-annotations-2.8/NOTICES diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-3.25.1/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-3.25.1/NOTICES new file mode 100644 index 000000000000..78cde9934c96 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-3.25.1/NOTICES @@ -0,0 +1,5 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. + +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-util-3.25.1/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-util-3.25.1/NOTICES new file mode 100644 index 000000000000..2f027f048436 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.protobuf.protobuf-java-util-3.25.1/NOTICES @@ -0,0 +1,2 @@ +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.re2j.re2j-1.7/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.re2j.re2j-1.7/NOTICES new file mode 100644 index 000000000000..ceca50055da0 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.re2j.re2j-1.7/NOTICES @@ -0,0 +1,3 @@ +Copyright (c) 2020 The Go Authors. All rights reserved. + +Copyright (c) 2021 The Go Authors. All rights reserved. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/LICENSE.txt deleted file mode 100644 index 75b52484ea47..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICE.txt deleted file mode 100644 index 37869462119f..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICE.txt +++ /dev/null @@ -1,17 +0,0 @@ -Apache Commons Codec -Copyright 2002-2017 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java -contains test data from http://aspell.net/test/orig/batch0.tab. -Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) - -=============================================================================== - -The content of package org.apache.commons.codec.language.bm has been translated -from the original php source code available at http://stevemorse.org/phoneticinfo.htm -with permission from the original authors. -Original source copyright: -Copyright (c) 2008 Alexander Beider & Stephen P. Morse. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICES deleted file mode 100644 index af6180676d5f..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.11/NOTICES +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -Some portions of this file Copyright (c) 2004-2006 Intel Corportation diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICE.txt new file mode 100644 index 000000000000..639cd1fb37a1 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons Codec +Copyright 2002-2023 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICES new file mode 100644 index 000000000000..78a7b2676f6e --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/commons-codec.commons-codec-1.16.0/NOTICES @@ -0,0 +1,71 @@ +/* + * Some portions of this file Copyright (c) 2004-2006 Intel Corporation + * and licensed under the BSD license. + */ + +/** + * Implementation of the MurmurHash2 32-bit and 64-bit hash functions. + * + *

MurmurHash is a non-cryptographic hash function suitable for general + * hash-based lookup. The name comes from two basic operations, multiply (MU) + * and rotate (R), used in its inner loop. Unlike cryptographic hash functions, + * it is not specifically designed to be difficult to reverse by an adversary, + * making it unsuitable for cryptographic purposes.

+ * + *

This contains a Java port of the 32-bit hash function {@code MurmurHash2} + * and the 64-bit hash function {@code MurmurHash64A} from Austin Appleby's + * original {@code c++} code in SMHasher.

+ * + *

This is a re-implementation of the original C code plus some additional + * features.

+ * + *

This is public domain code with no copyrights. From home page of + * SMHasher:

+ * + *
+ * "All MurmurHash versions are public domain software, and the author + * disclaims all copyright to their code." + *
+ * + * @see MurmurHash + * @see + * Original MurmurHash2 c++ code + * @since 1.13 + */ + +/** + * Implementation of the MurmurHash3 32-bit and 128-bit hash functions. + * + *

+ * MurmurHash is a non-cryptographic hash function suitable for general hash-based lookup. The name comes from two basic + * operations, multiply (MU) and rotate (R), used in its inner loop. Unlike cryptographic hash functions, it is not + * specifically designed to be difficult to reverse by an adversary, making it unsuitable for cryptographic purposes. + *

+ * + *

+ * This contains a Java port of the 32-bit hash function {@code MurmurHash3_x86_32} and the 128-bit hash function + * {@code MurmurHash3_x64_128} from Austin Appleby's original {@code c++} code in SMHasher. + *

+ * + *

+ * This is public domain code with no copyrights. From home page of + * SMHasher: + *

+ * + *
"All MurmurHash versions are public domain software, and the author disclaims all copyright to their + * code."
+ * + *

+ * Original adaption from Apache Hive. That adaption contains a {@code hash64} method that is not part of the original + * MurmurHash3 code. It is not recommended to use these methods. They will be removed in a future release. To obtain a + * 64-bit hash use half of the bits from the {@code hash128x64} methods using the input data converted to bytes. + *

+ * + * @see MurmurHash + * @see Original MurmurHash3 c++ + * code + * @see + * Apache Hive Murmer3 + * @since 1.13 + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-alts-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-alts-1.60.0/NOTICES new file mode 100644 index 000000000000..85ef97f15a3a --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-alts-1.60.0/NOTICES @@ -0,0 +1,21 @@ +/* + * Copyright 2018 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2019 The gRPC Authors + +Copyright 2020 The gRPC Authors + +Copyright 2021 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-api-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-api-1.60.0/NOTICES new file mode 100644 index 000000000000..c0e8ce442206 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-api-1.60.0/NOTICES @@ -0,0 +1,35 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2015 The gRPC Authors + +Copyright 2016 The gRPC Authors + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2018, gRPC Authors All rights reserved. + +Copyright 2019 The gRPC Authors + +Copyright 2020 The gRPC Authors + +Copyright 2021 The gRPC Authors + +Copyright 2022 The gRPC Authors + +Copyright 2023 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-auth-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-auth-1.60.0/NOTICES new file mode 100644 index 000000000000..8e6a5a19c6e9 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-auth-1.60.0/NOTICES @@ -0,0 +1,19 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2016 The gRPC Authors + +Copyright 2017 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.27.2/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.27.2/NOTICES deleted file mode 100644 index b87be2b51e3b..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.27.2/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright 2015 The gRPC Authors - -Copyright 2016 The gRPC Authors - -Copyright 2017 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/AUTHORS b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/AUTHORS new file mode 100644 index 000000000000..e491a9e7f783 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/AUTHORS @@ -0,0 +1 @@ +Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/NOTICE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/NOTICE.txt new file mode 100644 index 000000000000..f70c5620cf75 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-context-1.60.0/NOTICE.txt @@ -0,0 +1,62 @@ +Copyright 2014 The gRPC Authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +----------------------------------------------------------------------- + +This product contains a modified portion of 'OkHttp', an open source +HTTP & SPDY client for Android and Java applications, which can be obtained +at: + + * LICENSE: + * okhttp/third_party/okhttp/LICENSE (Apache License 2.0) + * HOMEPAGE: + * https://github.com/square/okhttp + * LOCATION_IN_GRPC: + * okhttp/third_party/okhttp + +This product contains a modified portion of 'Envoy', an open source +cloud-native high-performance edge/middle/service proxy, which can be +obtained at: + + * LICENSE: + * xds/third_party/envoy/LICENSE (Apache License 2.0) + * NOTICE: + * xds/third_party/envoy/NOTICE + * HOMEPAGE: + * https://www.envoyproxy.io + * LOCATION_IN_GRPC: + * xds/third_party/envoy + +This product contains a modified portion of 'protoc-gen-validate (PGV)', +an open source protoc plugin to generate polyglot message validators, +which can be obtained at: + + * LICENSE: + * xds/third_party/protoc-gen-validate/LICENSE (Apache License 2.0) + * NOTICE: + * xds/third_party/protoc-gen-validate/NOTICE + * HOMEPAGE: + * https://github.com/envoyproxy/protoc-gen-validate + * LOCATION_IN_GRPC: + * xds/third_party/protoc-gen-validate + +This product contains a modified portion of 'udpa', +an open source universal data plane API, which can be obtained at: + + * LICENSE: + * xds/third_party/udpa/LICENSE (Apache License 2.0) + * HOMEPAGE: + * https://github.com/cncf/udpa + * LOCATION_IN_GRPC: + * xds/third_party/udpa diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-core-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-core-1.60.0/NOTICES new file mode 100644 index 000000000000..24dabd367bf4 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-core-1.60.0/NOTICES @@ -0,0 +1,33 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2015 The gRPC Authors + +Copyright 2016 The gRPC Authors + +Copyright 2016,2022 The gRPC Authors + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2019 The gRPC Authors + +Copyright 2020 The gRPC Authors + +Copyright 2021 The gRPC Authors + +Copyright 2023 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-googleapis-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-googleapis-1.60.0/NOTICES new file mode 100644 index 000000000000..48d2038d7106 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-googleapis-1.60.0/NOTICES @@ -0,0 +1,17 @@ +/* + * Copyright 2021 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2022 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-grpclb-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-grpclb-1.60.0/NOTICES new file mode 100644 index 000000000000..d45b22fb5473 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-grpclb-1.60.0/NOTICES @@ -0,0 +1,23 @@ +/* + * Copyright 2016 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2019 The gRPC Authors + +Copyright 2020 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-inprocess-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-inprocess-1.60.0/NOTICES new file mode 100644 index 000000000000..ba4cff21dd72 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-inprocess-1.60.0/NOTICES @@ -0,0 +1,21 @@ +/* + * Copyright 2015 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2016 The gRPC Authors + +Copyright 2020 The gRPC Authors + +Copyright 2021 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/AUTHORS b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/AUTHORS new file mode 100644 index 000000000000..e491a9e7f783 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/AUTHORS @@ -0,0 +1 @@ +Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/NOTICE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/NOTICE.txt new file mode 100644 index 000000000000..f70c5620cf75 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-netty-shaded-1.60.0/NOTICE.txt @@ -0,0 +1,62 @@ +Copyright 2014 The gRPC Authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +----------------------------------------------------------------------- + +This product contains a modified portion of 'OkHttp', an open source +HTTP & SPDY client for Android and Java applications, which can be obtained +at: + + * LICENSE: + * okhttp/third_party/okhttp/LICENSE (Apache License 2.0) + * HOMEPAGE: + * https://github.com/square/okhttp + * LOCATION_IN_GRPC: + * okhttp/third_party/okhttp + +This product contains a modified portion of 'Envoy', an open source +cloud-native high-performance edge/middle/service proxy, which can be +obtained at: + + * LICENSE: + * xds/third_party/envoy/LICENSE (Apache License 2.0) + * NOTICE: + * xds/third_party/envoy/NOTICE + * HOMEPAGE: + * https://www.envoyproxy.io + * LOCATION_IN_GRPC: + * xds/third_party/envoy + +This product contains a modified portion of 'protoc-gen-validate (PGV)', +an open source protoc plugin to generate polyglot message validators, +which can be obtained at: + + * LICENSE: + * xds/third_party/protoc-gen-validate/LICENSE (Apache License 2.0) + * NOTICE: + * xds/third_party/protoc-gen-validate/NOTICE + * HOMEPAGE: + * https://github.com/envoyproxy/protoc-gen-validate + * LOCATION_IN_GRPC: + * xds/third_party/protoc-gen-validate + +This product contains a modified portion of 'udpa', +an open source universal data plane API, which can be obtained at: + + * LICENSE: + * xds/third_party/udpa/LICENSE (Apache License 2.0) + * HOMEPAGE: + * https://github.com/cncf/udpa + * LOCATION_IN_GRPC: + * xds/third_party/udpa diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-1.60.0/NOTICES new file mode 100644 index 000000000000..774de47f33ae --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-1.60.0/NOTICES @@ -0,0 +1,37 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2016 The gRPC Authors + +Copyright 2017 The gRPC Authors + +Copyright 2017 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-lite-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-lite-1.60.0/NOTICES new file mode 100644 index 000000000000..7bbf9d27fcef --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-protobuf-lite-1.60.0/NOTICES @@ -0,0 +1,17 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2017 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-services-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-services-1.60.0/NOTICES new file mode 100644 index 000000000000..2011548c32dc --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-services-1.60.0/NOTICES @@ -0,0 +1,59 @@ +/* + * Copyright 2016 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright 2018, gRPC Authors All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright 2019 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2020 The gRPC Authors + +Copyright 2021 The gRPC Authors + +Copyright 2022 The gRPC Authors + +Copyright 2023 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-stub-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-stub-1.60.0/NOTICES new file mode 100644 index 000000000000..bdc7323bfe44 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-stub-1.60.0/NOTICES @@ -0,0 +1,27 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2015 The gRPC Authors + +Copyright 2016 The gRPC Authors + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2019 The gRPC Authors + +Copyright 2021 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-util-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-util-1.60.0/NOTICES new file mode 100644 index 000000000000..49143211e644 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-util-1.60.0/NOTICES @@ -0,0 +1,29 @@ +/* + * Copyright 2014 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2016 The gRPC Authors + +Copyright 2017 The gRPC Authors + +Copyright 2018 The gRPC Authors + +Copyright 2019 The gRPC Authors + +Copyright 2021 The gRPC Authors + +Copyright 2022 The gRPC Authors + +Copyright 2023 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-xds-1.60.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-xds-1.60.0/NOTICES new file mode 100644 index 000000000000..83cf0fd03757 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.grpc.grpc-xds-1.60.0/NOTICES @@ -0,0 +1,25 @@ +/* + * Copyright 2019 The gRPC Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2020 The gRPC Authors + +Copyright 2021 Higher Frequency Trading http://www.higherfrequencytrading.com + +Copyright 2021 The gRPC Authors + +Copyright 2022 The gRPC Authors + +Copyright 2023 The gRPC Authors diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.opencensus.opencensus-proto-0.2.0/AUTHORS b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.opencensus.opencensus-proto-0.2.0/AUTHORS new file mode 100644 index 000000000000..e491a9e7f783 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.opencensus.opencensus-proto-0.2.0/AUTHORS @@ -0,0 +1 @@ +Google Inc. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.perfmark.perfmark-api-0.26.0/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.perfmark.perfmark-api-0.26.0/NOTICES new file mode 100644 index 000000000000..034ded3c7968 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/io.perfmark.perfmark-api-0.26.0/NOTICES @@ -0,0 +1,17 @@ +/* + * Copyright 2019 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Copyright 2020 Google LLC diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/LICENSE.txt new file mode 100644 index 000000000000..a0ccc93564c0 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/LICENSE.txt @@ -0,0 +1,263 @@ +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 + +1. Definitions. + + 1.1. Contributor. means each individual or entity that creates or contributes to the creation of Modifications. + + 1.2. Contributor Version. means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. + + 1.3. Covered Software. means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. + + 1.4. Executable. means the Covered Software in any form other than Source Code. + + 1.5. Initial Developer. means the individual or entity that first makes Original Software available under this License. + + 1.6. Larger Work. means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. + + 1.7. License. means this document. + + 1.8. Licensable. means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + + 1.9. Modifications. means the Source Code and Executable form of any of the following: + + A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; + + B. Any new file that contains any part of the Original Software or previous Modification; or + + C. Any new file that is contributed or otherwise made available under the terms of this License. + + 1.10. Original Software. means the Source Code and Executable form of computer software code that is originally released under this License. + + 1.11. Patent Claims. means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + + 1.12. Source Code. means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. + + 1.13. You. (or .Your.) means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, .You. includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, .control. means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + + (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. + + 3.2. Modifications. + The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. + + 3.3. Required Notices. + You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. + + 3.4. Application of Additional Terms. + You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients. rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + + 3.5. Distribution of Executable Versions. + You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient.s rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + + 3.6. Larger Works. + You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. + + 4.2. Effect of New Versions. + You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. + + 4.3. Modified Versions. + When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN .AS IS. BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as .Participant.) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. + + 6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY.S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a .commercial item,. as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of .commercial computer software. (as that term is defined at 48 C.F.R. ? 252.227-7014(a)(1)) and .commercial computer software documentation. as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction.s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys. fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) + + The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. + + +The GNU General Public License (GPL) Version 2, June 1991 + + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + + c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words + +"Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code." + +Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination. + +As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.? An independent module is a module which is not derived from or based on this library.? If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so.? If you do not wish to do so, delete this exception statement from your version. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/NOTICES new file mode 100644 index 000000000000..36de58b13e82 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/javax.annotation.javax.annotation-api-1.3.2/NOTICES @@ -0,0 +1,45 @@ + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. + + Copyright (c) 2012-2017 Oracle and/or its affiliates. All rights reserved. + + The contents of this file are subject to the terms of either the GNU + +/* + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. + * + * Copyright (c) 2009-2018 Oracle and/or its affiliates. All rights reserved. + * + * The contents of this file are subject to the terms of either the GNU + * General Public License Version 2 only ("GPL") or the Common Development + * and Distribution License("CDDL") (collectively, the "License"). You + * may not use this file except in compliance with the License. You can + * obtain a copy of the License at + * https://oss.oracle.com/licenses/CDDL+GPL-1.1 + * or LICENSE.txt. See the License for the specific + * language governing permissions and limitations under the License. + * + * When distributing the software, include this License Header Notice in each + * file and include the License file at LICENSE.txt. + * + * GPL Classpath Exception: + * Oracle designates this particular file as subject to the "Classpath" + * exception as provided by Oracle in the GPL Version 2 section of the License + * file that accompanied this code. + * + * Modifications: + * If applicable, add the following below the License Header, with the fields + * enclosed by brackets [] replaced by your own identifying information: + * "Portions Copyright [year] [name of copyright owner]" + * + * Contributor(s): + * If you wish your version of this file to be governed by only the CDDL or + * only the GPL Version 2, indicate your decision by adding "[Contributor] + * elects to include this software in this distribution under the [CDDL or GPL + * Version 2] license." If you don't indicate a single choice of license, a + * recipient has the option to distribute your version of this file under + * either the CDDL, the GPL Version 2 or to extend the choice of license to + * its licensees as provided above. However, if you add GPL Version 2 code + * and therefore, elected the GPL Version 2 license, then the option applies + * only if the new code is made subject to such option by the copyright + * holder. + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/BSD-3-Clause b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/BSD-3-Clause new file mode 100644 index 000000000000..731a7373159e --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/BSD-3-Clause @@ -0,0 +1,9 @@ +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/Go_License b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/Go_License new file mode 100644 index 000000000000..d71c2f1e5ff3 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/Go_License @@ -0,0 +1,27 @@ +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/MIT b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/MIT new file mode 100644 index 000000000000..fe45399e37ad --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/licenses/MIT @@ -0,0 +1,6 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.13/NOTICE b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.14/NOTICE similarity index 70% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.13/NOTICE rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.14/NOTICE index f3c91e72f38c..cc382b8c5523 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.13/NOTICE +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpclient-4.5.14/NOTICE @@ -1,6 +1,6 @@ Apache HttpClient -Copyright 1999-2020 The Apache Software Foundation +Copyright 1999-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/LICENSE b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/LICENSE deleted file mode 100644 index d64569567334..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICES deleted file mode 100644 index dc34027f6f18..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICES +++ /dev/null @@ -1 +0,0 @@ -regarding copyright ownership. The ASF licenses this file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICE b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.16/NOTICE similarity index 70% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICE rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.16/NOTICE index b28b9c01a278..b246f9f5084a 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.15/NOTICE +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.apache.httpcomponents.httpcore-4.4.16/NOTICE @@ -1,6 +1,6 @@ Apache HttpCore -Copyright 2005-2021 The Apache Software Foundation +Copyright 2005-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.checkerframework.checker-qual-3.12.0/LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.checkerframework.checker-qual-3.40.0/LICENSE.txt similarity index 100% rename from distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.checkerframework.checker-qual-3.12.0/LICENSE.txt rename to distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.checkerframework.checker-qual-3.40.0/LICENSE.txt diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.codehaus.mojo.animal-sniffer-annotations-1.23/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.codehaus.mojo.animal-sniffer-annotations-1.23/NOTICES new file mode 100644 index 000000000000..11ed56784400 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.codehaus.mojo.animal-sniffer-annotations-1.23/NOTICES @@ -0,0 +1,30 @@ + The MIT License + + Copyright (c) 2009 codehaus.org. + + Permission is hereby granted, free of charge, to any person obtaining a copy + +/* + * The MIT License + * + * Copyright (c) 2008 Kohsuke Kawaguchi and codehaus.org. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.conscrypt.conscrypt-openjdk-uber-2.5.2/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.conscrypt.conscrypt-openjdk-uber-2.5.2/NOTICES new file mode 100644 index 000000000000..b63c9641beee --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.conscrypt.conscrypt-openjdk-uber-2.5.2/NOTICES @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright (C) 2007 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright 2013 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* + * Copyright 2013 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ + +Copyright (C) 2008 The Android Open Source Project + +Copyright (C) 2009 The Android Open Source Project + +Copyright (C) 2010 The Android Open Source Project + +Copyright (C) 2011 The Android Open Source Project + +Copyright (C) 2012 The Android Open Source Project + +Copyright (C) 2013 The Android Open Source Project + +Copyright (C) 2014 The Android Open Source Project + +Copyright (C) 2015 The Android Open Source Project + +Copyright (C) 2016 The Android Open Source Project + +Copyright (C) 2017 The Android Open Source Project + +Copyright (C) 2019 The Android Open Source Project + +Copyright (C) 2020 The Android Open Source Project + +Copyright 2014 The Android Open Source Project + +Copyright 2014 The Netty Project + +Copyright 2015 The Android Open Source Project + +Copyright 2016 The Android Open Source Project + +Copyright 2016 The Netty Project + +Copyright 2017 The Android Open Source Project + +Copyright 2017 The Netty Project + +Copyright 2018 The Android Open Source Project + +Copyright 2019 The Android Open Source Project + +Copyright 2021 The Android Open Source Project diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/BSD-3-LICENSE.txt b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/BSD-3-LICENSE.txt new file mode 100644 index 000000000000..7a0d3894c96f --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/BSD-3-LICENSE.txt @@ -0,0 +1,29 @@ +Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of JSR-310 nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/NOTICES new file mode 100644 index 000000000000..fcdfc8f0d077 --- /dev/null +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/org.threeten.threetenbp-1.6.8/NOTICES @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * * Neither the name of JSR-310 nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ From a0a8230422c9671c20bf870e84bbfe25c5ddfbf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Wed, 7 Feb 2024 14:39:03 +0100 Subject: [PATCH 17/17] Remove jsr305 from dependencies --- build.sbt | 6 +++--- .../lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE | 5 ----- .../com.google.code.findbugs.jsr305-3.0.2/NOTICES | 1 - .../com.google.code.findbugs.jsr305-3.0.2/copyright-keep | 1 - tools/legal-review/Google_Api/report-state | 4 ++-- 5 files changed, 5 insertions(+), 12 deletions(-) delete mode 100644 distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.findbugs.jsr305-3.0.2/NOTICES delete mode 100644 tools/legal-review/Google_Api/com.google.code.findbugs.jsr305-3.0.2/copyright-keep diff --git a/build.sbt b/build.sbt index b60b4cf34595..b61ff11dda1e 100644 --- a/build.sbt +++ b/build.sbt @@ -2779,9 +2779,9 @@ lazy val `std-google-api` = project Compile / packageBin / artifactPath := `google-api-polyglot-root` / "std-google-api.jar", libraryDependencies ++= Seq( - "com.google.api-client" % "google-api-client" % "2.2.0", - "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0", - "com.google.analytics" % "google-analytics-data" % "0.44.0" + "com.google.api-client" % "google-api-client" % "2.2.0" exclude ("com.google.code.findbugs", "jsr305"), + "com.google.apis" % "google-api-services-sheets" % "v4-rev612-1.25.0" exclude ("com.google.code.findbugs", "jsr305"), + "com.google.analytics" % "google-analytics-data" % "0.44.0" exclude ("com.google.code.findbugs", "jsr305") ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE index 54c581a90dca..c78224ef7711 100644 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/NOTICE @@ -71,11 +71,6 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.google.auto.value.auto-value-annotations-1.10.4`. -'jsr305', licensed under the The Apache Software License, Version 2.0, is distributed with the Google_Api. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.code.findbugs.jsr305-3.0.2`. - - 'gson', licensed under the Apache-2.0, is distributed with the Google_Api. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `com.google.code.gson.gson-2.10.1`. diff --git a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.findbugs.jsr305-3.0.2/NOTICES b/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.findbugs.jsr305-3.0.2/NOTICES deleted file mode 100644 index 01aa08bf086f..000000000000 --- a/distribution/lib/Standard/Google_Api/0.0.0-dev/THIRD-PARTY/com.google.code.findbugs.jsr305-3.0.2/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright (c) 2005 Brian Goetz diff --git a/tools/legal-review/Google_Api/com.google.code.findbugs.jsr305-3.0.2/copyright-keep b/tools/legal-review/Google_Api/com.google.code.findbugs.jsr305-3.0.2/copyright-keep deleted file mode 100644 index 01aa08bf086f..000000000000 --- a/tools/legal-review/Google_Api/com.google.code.findbugs.jsr305-3.0.2/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Copyright (c) 2005 Brian Goetz diff --git a/tools/legal-review/Google_Api/report-state b/tools/legal-review/Google_Api/report-state index e9aac37ef2df..b2dff7d39ca3 100644 --- a/tools/legal-review/Google_Api/report-state +++ b/tools/legal-review/Google_Api/report-state @@ -1,3 +1,3 @@ -4B20A73BCBECA2ADC0A608DD3814442B01F67891DB6524AE5B24CD919092C304 -DDED4426101C1DE30E1B5CF2A54E1740D89DE7E0619C78FB9CE4471FB74102BC +DB2DF2FB35D384E72823D9658B4322408922D661D353D3770002DA293F0610DD +023B7EC2B582D930CD7FCAC326C0801D1945D341AEB004087246878882B49DAC 0