在eclipse下编写程序,一般讲jar放到lib目录。不同的project,都要同一个或多个jar,一般会将jar复制一份放到另一个项目的lib下,这样就造成了jar重复。本地源代码也越来越大,想到使用maven管理本地的源码。个人经历,将project转为maven项目。
前提,安装了m2eclipse插件
1、建一个只有基本信息的pom.xml
<?xml version="1.0" encoding="utf-8" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.jake</groupId>
<artifactId>AdministrativeDivisonSVG</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<description />
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
2、以maven项目方式导入该project,移除所有lib里面jar的引用
3、一般习惯源码放在src下,测试代码放在test下,在pom.xml,指定项目的源码、测试代码目录,否则,默认的将是src/main、src/resource、test/main、test/resource。
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<executable>D:/Java/jdk1.6.0_05/bin</executable>
<encoding>utf8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
4、对照project中libjar,通过maven的方式导入jar包,即添加dependency。
尽量通过maven中央库获取jar;对于中央库中没有的,需要手动添加到本地仓库。
为了简化jar添加到本地,使用了脚本install.bat
mvn install:install-file -DgroupId=%1 -DartifactId=%2 -Dversion=%3 -Dpackaging=jar -Dfile=%4 -DgeneratePom=true
导入操作在install-all.bat
call ./install.bat org.hibernate hibernate 3.5.6-Final hibernate3.jar
call ./install.bat org.hibernate hibernate-jpa 2.0-api-1.0.0.Final hibernate-jpa-2.0-api-1.0.0.Final.jar
5、将install.bat、install-all.bat放置在lib目录下,在命令行下运行install-all.bat
6、刷新本地仓库,window-->show view-->other-->maven-->maven repositories-->local repositoriese-->local repositoty-->右键-->rebuilt index
7、导入手动添加到本地库的jar
mark:
lib中有很多jar包,命名不是很规范,因此,本地的名称很可能与中央库的名称不一致,需要甄别,如本地jar org.springframework.web.servlet-3.0.3.RELEASE.jar,实际对应中央库中的org.springframework.webmvc-3.0.3.RELEASE.jar
对testng支持
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng-spring</artifactId>
<version>4.7</version>
<classifier>jdk15</classifier>
</dependency>