/* * Copyright (c) 2015. Bearchoke */ package com.bearchoke.platform.persistence.mongo.config; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Profile; import org.springframework.context.annotation.PropertySource; /** * Created by Bjorn Harvold * Date: 1/9/14 * Time: 11:55 PM * Responsibility: */ @Configuration @Profile("cloud") @PropertySource(value = "classpath:cqrs-cloud.properties") public class AxonCQRSCloudConfig { }