Banten is a modular application Framework, based on Spring-Boot. http://projects.spring.io/spring-boot/
Banten focus in perform deep transversals cuts of funcionality called "Module".
The only thing you need to do, is extend the BantenApplication class, providing the modules that you want to use. This will create the Spring's Application Context.
public class SampleApplication extends BantenApplication {
@Override
protected Bootstrap bootstrap() {
return new Bootstrap(
ModuleA.class,
ModuleB.class
);
}
@Override
public void init(final ModuleApiRegistry registry) {
// here you should configure modules "application wide"
}
}
Your pom.xml
Yes, we are in maven central ( http://search.maven.org/#search%7Cga%7C1%7Ccom.avenida.banten ), take a look at banten-sample using the banten version 1.0!