处理官网没有的jar包

对于官网没有的jar包,手动添加时除了要加入jar文件,还要有.pom,.jar.sha1,.pom.sha1文件。生成.jar.sha1,.pom.sha1方法是(以pinyin4j-2.5.0为例):

1.手动放入pinyin4j-2.5.0.jar文件.

2.手动编写pinyin4j-2.5.0.pom文件,注意命名
<project> <modelVersion>4.0.0</modelVersion> <groupId>net.sourceforge.pinyin4j</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version> </project>

 

3.手动编写build.xml文件:
<project default="checksum"> <target name="checksum"> <checksum file="/home/ftp/m2repo/repository/net/sourceforge/pinyin4j/pinyin4j/2.5.0/pinyin4j-2.5.0.jar" algorithm="SHA" fileext=".sha1"/> <checksum file="/home/ftp/m2repo/repository/net/sourceforge/pinyin4j/pinyin4j/2.5.0/pinyin4j-2.5.0.pom" algorithm="SHA" fileext=".sha1"/> </target> </project>

 

4.在运行ant checksum ,即生成下列文件
pinyin4j-2.5.0.jar.sha1
pinyin4j-2.5.0.pom.sha1

5.项目pom.xml文件配置:
<dependency> <groupId>net.sourceforge.pinyin4j</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version> </dependency>

 

from: http://hua04104.javaeye.com/blog/781481

你可能感兴趣的:(Algorithm,ant,jar,File)