wiki:shareMaven

Version 5 (modified by qinhongyuan, 14 years ago) (diff)

--

Maven使用

命名:
<groupId>cn.pconline.项目组</groupId>
<artifactId>项目名称</artifactId>
<version>版本</vernsion>

添加依赖:
所谓依赖就是开始时候所需要的包

	<dependency>
	  <groupId>org.springframework</groupId>
	  <artifactId>spring-web</artifactId>
	  <version>3.0.6.RELEASE</version>
	</dependency>