• maven仓库添加本地jar


    一、将jar添加到本地仓库的做法:

    以下面pom.xml依赖的jar包为例:

    实际项目中pom.xml依赖写法:

    [html] view plain copy
     
    1. <dependency>  
    2.     <groupId>org.springframework</groupId>  
    3.     <artifactId>spring-context-support</artifactId>  
    4.     <version>3.1.0.RELEASE</version>  
    5. </dependency>  

    Maven 安装 JAR 包的命令是:

    [html] view plain copy
     
    1. mvn install:install-file   
    2. -Dfile=jar包的位置   
    3. -DgroupId=上面的groupId   
    4. -DartifactId=上面的artifactId   
    5. -Dversion=上面的version   
    6. -Dpackaging=jar  

    例如我的这个spring-context-support-3.1.0.RELEASE.jar 文件放在了"D:mvn"中

    则命令为:

    mvn install:install-file 

    -Dfile=D:mvnspring-context-support-3.1.0.RELEASE.jar 

    -DgroupId=org.springframework 

    -DartifactId=spring-context-support 

    -Dversion=3.1.0.RELEASE 

    -Dpackaging=jar

    注意:任何路径和名称不要有中文和空格,以防出现莫名其妙的错误。

    二、不讲jar包添加到本地仓库也可在maven工程中使用外部jar包的做法:

    假设将包htmlparser.jar放入了项目下的lib目录中 :
    -> ${project}/lib/htmlparser.jar
    则pom.xml文件中依赖可以如下:
    [html] view plain copy
     
    1. <dependency>  
    2.     <groupId>com.htmlparser</groupId>  
    3.     <artifactId>htmlparser</artifactId>  
    4.     <version>2.0</version>  
    5.     <scope>system</scope>  
    6.     <systemPath>${project.basedir}/lib/htmlparser.jar</systemPath>  
    7. </dependency>  

    转自:http://blog.csdn.net/a491857321/article/details/51085167

  • 相关阅读:
    LeetCode 23. Merge k Sorted Lists
    第四章 基本TCP套接字编程 第五章 TCP客户/服务器程序实例
    LeetCode 18. 4Sum
    LeetCode 16. 3Sum Closest
    Leetcode题 257. Binary Tree Paths
    Django---Form表单
    Python---面向对象(二)
    Python---面向对象(一)
    Django---Cookie && Session && 分页
    [ Day51 ]Python之路----JavaScript --DOM操作
  • 原文地址:https://www.cnblogs.com/yidaxia/p/5511106.html
Copyright © 2020-2023  润新知