Maven & Eclipse WTP

1、生成标准布局的webapp项目,在控制台执行下面命令(groupId后面是包名,artifactId后面是项目名称):
mvn archetype:create -DgroupId=org.example -DartifactId=example-webapp -DarchetypeArtifactId=maven-archetype-webapp

2、设置project facets:
	<build>
		<finalName>sample-webapp</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
		</plugins>
	</build>


3、生成eclipse项目
在控制台下进入项目目录,如果是从maven webapp项目生成eclipse wtp,执行:
mvn –Dwtpversion=1.0 eclipse:eclipse

(wtp1.0以上版本均可用,可设置为R7/1.0/1.5)
4、为项目添加新的依赖

编辑pom文件,添加新的dependency,保存后,在控制台分别执行:
mvn eclipse:clean 
mvn -Dwtpversion=1.0 eclipse:eclipse

在eclipse中刷新项目即可看到新的依赖项已经添加到eclipse项目中

5、使用
m2wtp or libCopy: update site

来拷贝maven管理的lib到webapp中。

你可能感兴趣的:(apache,eclipse,maven,Google,项目管理)