I'm Using Spring Boot 1.3.0.RELEASE. And for my application, I'm providing some external jar path like below, while I'm running the app from CMD.
java -Dloader.path="lib,config,C:/TM/ojdbc14-10.2.0.2.0.jar,spring" -jar ticketmanager-application-0.3.0-SNAPSHOT.jar
Now, when I'm trying to run the app from eclipse, I'm add the -Dloader.path="lib,config,C:/TM/ojdbc14-10.2.0.2.0.jar,spring"
to VM Argument. Like the snapshot shown below.
Editing: Adding Maven Spring Plugin configuration ------------------------
Here, the configuration section, I have added for the loader.path
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.3.0.RELEASE</version>
<configuration>
<layout>ZIP</layout>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
Therefore, my question, How should I add this Argument? because it's not working :(