From 24490283227f76c9829686d159833eafa1fc7598 Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Fri, 7 Jul 2023 11:53:08 -0300 Subject: [PATCH] Adjust doc title --- docs/antora.yml | 4 ++-- .../firestore/runtime/FirestoreProducer.java | 19 +++++++++++-------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index cb83ceb2..a0d35f92 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: quarkus-google-cloud-services -title: Quarkus Google Cloud Services +title: Google Cloud Services version: main nav: - - modules/ROOT/nav.adoc \ No newline at end of file + - modules/ROOT/nav.adoc diff --git a/firestore/runtime/src/main/java/io/quarkiverse/googlecloudservices/firestore/runtime/FirestoreProducer.java b/firestore/runtime/src/main/java/io/quarkiverse/googlecloudservices/firestore/runtime/FirestoreProducer.java index d99c5ad9..72e70ac2 100644 --- a/firestore/runtime/src/main/java/io/quarkiverse/googlecloudservices/firestore/runtime/FirestoreProducer.java +++ b/firestore/runtime/src/main/java/io/quarkiverse/googlecloudservices/firestore/runtime/FirestoreProducer.java @@ -1,20 +1,23 @@ package io.quarkiverse.googlecloudservices.firestore.runtime; -import com.google.api.gax.retrying.RetrySettings; -import com.google.auth.oauth2.GoogleCredentials; -import com.google.cloud.firestore.Firestore; -import com.google.cloud.firestore.FirestoreOptions; -import io.quarkiverse.googlecloudservices.common.GcpBootstrapConfiguration; -import io.quarkiverse.googlecloudservices.common.GcpConfigHolder; -import io.quarkiverse.googlecloudservices.firestore.runtime.FirestoreConfiguration.RetryConfiguration; +import java.io.IOException; + import jakarta.enterprise.context.ApplicationScoped; import jakarta.enterprise.inject.Default; import jakarta.enterprise.inject.Produces; import jakarta.inject.Inject; import jakarta.inject.Singleton; + import org.threeten.bp.Duration; -import java.io.IOException; +import com.google.api.gax.retrying.RetrySettings; +import com.google.auth.oauth2.GoogleCredentials; +import com.google.cloud.firestore.Firestore; +import com.google.cloud.firestore.FirestoreOptions; + +import io.quarkiverse.googlecloudservices.common.GcpBootstrapConfiguration; +import io.quarkiverse.googlecloudservices.common.GcpConfigHolder; +import io.quarkiverse.googlecloudservices.firestore.runtime.FirestoreConfiguration.RetryConfiguration; @ApplicationScoped public class FirestoreProducer {