maven 记录

Maven2 的常用命令 :
http://bakcom.iteye.com/blog/280604

Maven Pom.xml 元素详解
http://nomandia.iteye.com/blog/380010

maven官方地址
http://maven.apache.org/plugins/maven-eclipse-plugin/
http://maven.apache.org/plugins/

在本地库中新增包:
首先下载ojdbc14.jar这个包,然后在cmd下输入以下

mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar -Dfile=D:\ojdbc14.jar

当然这里的-Dfile是指本地存放ojdbc14.jar的位置

其次中pom.xml中写入
<dependency>
   <groupId>com.oracle</groupId>
   <artifactId>ojdbc14</artifactId>
   <version>10.2.0.4.0</version>
  </dependency>


你可能感兴趣的:(maven)