I want to make manifest.mf file included two classpaths using Maven
pom.xml
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./dependency</classpathPrefix>
<mainClass>com.sds.afi.run.SimsMain</mainClass>
</manifest>
Then, the manifest.mf is generated like below.
Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: arnold
Build-Jdk: 1.6.0_27
Main-Class: com.sds.afi.run.SimsMain
Class-Path: ./dependency/mina-core-1.1.7.jar ./dependency/mina-integra
tion-spring-1.1.7.jar ./dependency/mina-filter-ssl-1.1.7.jar ./depend
ency/spring-integration-core-2.0.4.RELEASE.jar ./dependency/spring-in
tegration-mail-2.0.4.RELEASE.jar ./dependency/spring-context-support-
3.0.5.RELEASE.jar ./dependency/spring-integration-ip-2.0.4.RELEASE.ja
r ./dependency/spring-integration-stream-2.0.4.RELEASE.jar ./dependen
cy/commons-lang-2.6.jar
**And I want to attach "." at the last.
How can I solve this problem? Thanks**