I want to create the jar. When I want to change the configuration of connection to the database, I don't want to create a new jar. I want to change this configuration and restart. Can I create an external file for this?
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.ApplicationLaunch</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>