package com.momega.spacesimulator.context; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; /** * The application configuration. It instantiates all the services * Created by martin on 6/18/14. */ @Configuration @ComponentScan(basePackages = {"com.momega.spacesimulator.service", "com.momega.spacesimulator.json", "com.momega.spacesimulator.builder"}) public class AppConfig { }