org.entur.pubsub.base.config.GooglePubSubConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entur-google-pubsub Show documentation
Show all versions of entur-google-pubsub Show documentation
Base configuration for Google PubSub clients, to be used for non-Camel clients.
Camel-based clients should use camel-entur-google-pubsub instead.
package org.entur.pubsub.base.config;
import com.google.cloud.spring.autoconfigure.pubsub.GcpPubSubAutoConfiguration;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
/**
* Specific Spring configuration.
* There is currently none defined, the class is kept for backward compatibility.
*/
@Configuration
@AutoConfigureBefore(GcpPubSubAutoConfiguration.class)
@ComponentScan("org.entur.pubsub")
public class GooglePubSubConfig {
}