I got myself up and running with Spring, maven using Spring Boot. You may check the below link for details -
https://ashikuzzaman.wordpress.com/2015/06/04/spring-with-maven-using-spring-boot/
In my pom.xml I have the following properties defined.
<properties>
<java.version>1.7</java.version>
<!-- The main class to start by executing java -jar -->
<start-class>com.github.ashikuzzaman.javaapichecks.spring.RawLinkedListTypes</start-class>
</properties>
I wanted to pass one or more runtime arguements to get into the arguement list that main() accepts. Can I do this via a parameter passing in start-class or main-class?