Maven 添加外部 jar

问题描述 投票:0回答:1

我想添加以下罐子

gson-extras-1.0-SNAPSHOT.jar

jar结构如下

查看清单,版本是

清单版本:1.0

pom如下

<repositories>
        <repository>
            <id>grupoicarep</id>
            <url>file:///C:/stix/stix_ica/stix2/lib/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>com.google.gson</groupId>
            <artifactId>typeadapters</artifactId>
            <version>0.1</version>
        </dependency>
    

但显示以下错误:

无法在项目 stix2 上执行目标:无法解析项目 es.grupoica:stix2:jar:0.0.1-SNAPSHOT 的依赖项:无法在 file:///C 中找到 com.google.gson:typeadapters:jar:0.1 :/stix/stix_ica/stix2/lib/ 已缓存在本地存储库中,在 grupoicarep 的更新间隔已过或强制更新之前,不会重新尝试解析 -> [帮助 1] [错误]

我尝试了很多组合,但我只是猜测并没有得到正确的结果

我不知道我做错了什么

提前非常感谢

安娜

java maven jar pom.xml external
1个回答
0
投票

使用以下依赖项将本地计算机中可用的 jar 包含到 maven。

<dependency>    
  <groupId>groupid</groupId>    
  <artifactId>artifactid</artifactId>   
  <version>1.0</version>    
  <scope>system</scope> 
  <systemPath>${basedir}\lib\JAR_NAME.jar</systemPath>  
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.