This library provides a Spring mechanism for launching a command-line application with options and operands.
repositories {
mavenCentral()
}
dependencies {
classpath 'com.trigonic:spring-cmdline:0.3'
}
The CommandLineAppContext defined in this library allows you to load an application bean within the context of a Spring ApplicationContext and leverages Spring's rich type conversions and initialization semantics.
See the sample application for an example.