《Maven_孔浩》Maven依赖

项目目录结构如下:
pom.xml
src          main\java\zttc\itat\maven\ch02
target
 
pom.xml文件说明

groupId:项目id(如:zttc.itat.maven)

artifactId:模块id(如:maven-ch01)
version:版本(如:0.0.1-SNAPSHOT)
 
添加依赖:
<dependencies>

<!--添加对junit的依赖-->

     <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.10</version>
          <scope>test</scope>
     </dependency>

<!--添加对maven-ch01的依赖-->

     <dependency>
          <groupId>zttc.itat.maven</groupId>
          <artifactId>maven-ch01</artifactId>
          <version>0.0.1-SNAPSHOT</version>
     </dependency>
</dependencies>
上一篇:nodejs和npm的安装


下一篇:npm私有仓库搭建