• Mac系统用Maven本地引入jar包报错问题解决


    打包命令

    mvn install:install-file -Dfile=/Users/用户名/tool/selenium-server-standalone-3.9.1.jar -DgroupId=org.selenium -DartifactId=selenium-server-standalone -Dversion=3.9.1 -Dpackaging=jar
    

    注意:
    如果没有配置全局环境变量,请找到你maven文件夹,在文件夹的bin目录中进行命令。

    
    -Dfile -> jar包的路径
    -DgroupId -> 对应maven依赖中的groupId
    -Dversion -> 对应maven依赖中的Dversion,版本号
    -DartifactId -> 对应maven依赖中的DartifactId
    
    

    常见错误

    maven目录里的setting.xml文件中节点的地址和你本地仓库地址不匹配

    <!--
      <localRepository>/java/maven/apache-maven-3.6.3/properties</localRepository>
    -->
    
    <!-- 一般idea使用的本地仓库地址 -->   
    <localRepository>/Users/mac/.m2/repository</localRepository>
    

    上传成功

    在pom.xml文件中按照格式添加依赖就可以了

         <dependency>
                <groupId>org.selenium</groupId>
                <artifactId>selenium-server-standalone</artifactId>
                <version>3.9.1</version>
            </dependency>
    
  • 相关阅读:
    lua判断字符串包含另一个字符串
    expect使用技巧
    Linux expect
    expect正则捕获返回结果
    修改alpine Linux的Docker容器的时区
    Dockerfile镜像优化,减小镜像
    Sed在匹配行前后加入一行
    scp的使用以及cp的对比
    rsync 的用法
    傅里叶系列(一)傅里叶级数的推导 (转)
  • 原文地址:https://www.cnblogs.com/longronglang/p/16712932.html
Copyright © 2020-2023  润新知