ant生成classpath

通过ANT打包jar并生成MANIFEST.MF中的Class-Path属性 

一文中,提出生成classpath的方法

< attribute  name ="Class-Path"  value ="${libs.project}"   /> 

但这样子只会生成对lib包下的依赖,如果想把当前目录也生成为classpath 怎么办呢?

 

其实只需要对 value 做下修改就可以了。

< attribute  name ="Class-Path"  value =". ${libs.project}"   /> 加上 . 号生成出来的就可以了。

你可能感兴趣的:(classpath)