I am facing issue with exporting JAR
as runnable from Eclipse
.
Tried with maven plugin, spring-boot plugin & simple java project export
.
However, it shows spring.factories file related error. I have already copied and pasted it in the required folder after checking on google.
I need to export a spring-boot application
which includes some 3rd party JARs
and maven jars(to be downloaded from pom.xml) and properties file.
The Jar should be running from the console or using a batch file in the system.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>