第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

設(shè)置Maven倉庫

設(shè)置Maven倉庫

炎炎設(shè)計 2022-01-06 19:42:19
我的新項目需要 javax.xml 包。我確實在 mvnrepository.com 中搜索并找到了一個:<!-- https://mvnrepository.com/artifact/javax.xml/jaxrpc-api --><dependency>    <groupId>javax.xml</groupId>    <artifactId>jaxrpc-api</artifactId>    <version>2.0_EA1</version></dependency>我想,第一個注釋行是包存儲庫。如果我錯了,請糾正我。我在我的中添加了以下部分pom.xml:<repositories>  <repository>    <id>repo1</id>    <name>Repo 1</name>    <url>https://mvnrepository.com/artifact/javax.xml/jaxrpc-api</url>  </repository></repositories><dependencies>  <dependency>    <groupId>javax.xml</groupId>    <artifactId>jaxrpc-api</artifactId>    <version>2.0_EA1</version>  </dependency></dependencies>但看起來我弄錯了 Maven 地址。mvn compile 帶來的錯誤:[ERROR] Failed to execute goal on project test-xpath: Could not resolve dependencies for project com.kkk:test-xpath:jar:0.0.1-SNAPSHOT: Failure to find javax.xml:jaxrpc-api:jar:2.0_EA1 in https://mvnrepository.com/artifact/javax.xml/jaxrpc-api was cached in the local repository, resolution will not be reattempted until the update interval of repo1 has elapsed or updates are forced -> [Help 1]我做錯了什么以及如何解決?UPD刪除存儲庫后,我收到錯誤: Failed to execute goal on project test-xpath: Could not resolve dependencies for project com.kkk:test-xpath:jar:0.0.1-SNAPSHOT: Failure to find javax.xml:jaxrpc-api:jar:2.0_EA1 in https://mvnrepository.com/artifact/javax.xml/jaxrpc-api was cached in the local repository, resolution will not be reattempted until the update interval of repo1 has elapsed or updates are forced -> [Help 1]UPD2我了解到我應(yīng)該將 spring 存儲庫添加到我的依賴項中:    <repositories>    <repository>      <id>repo1</id>      <name>Repo 1</name>      <url>http://repo.spring.io/plugins-release/</url>    </repository>  </repositories> 我已經(jīng)刪除.m2\repository\javax并做了maven clean
查看完整描述

3 回答

?
largeQ

TA貢獻2039條經(jīng)驗 獲得超8個贊

這不是存儲庫標(biāo)簽的正確使用。如果您轉(zhuǎn)到https://mvnrepository.com主頁,您會看到它從多個存儲庫(例如 central、jcenter 等)生成索引。因此您必須使用標(biāo)準(zhǔn)存儲庫。


查看完整回答
反對 回復(fù) 2022-01-06
?
飲歌長嘯

TA貢獻1951條經(jīng)驗 獲得超3個贊

如果我們打開maven 存儲庫頁面,我們可以看到兩個選項卡:Central 和 Spring Plugins。打開 Spring 插件選項卡,并嘗試使用它,因為該版本是最新的,日期為 2018 年 4 月。


<!-- https://mvnrepository.com/artifact/javax.xml/jaxrpc-api -->

<dependency>

    <groupId>javax.xml</groupId>

    <artifactId>jaxrpc-api</artifactId>

    <version>2.0_ea1</version>

</dependency>

此外,運行mvn clean命令,并確保刪除位置中的javax文件夾.m2。


查看完整回答
反對 回復(fù) 2022-01-06
?
喵喵時光機

TA貢獻1846條經(jīng)驗 獲得超7個贊

2.0_EA1 在 Maven 中心不存在。如果您使用 1.1,您將看到它有效。非規(guī)范化 semver 版本似乎與非官方版本有關(guān),可能是 alpha 版本。search.maven.org 上的搜索聲稱它存在,但 jar 本身不存在


要檢查工作版本:


<dependencies>

  <dependency>

    <groupId>javax.xml</groupId>

    <artifactId>jaxrpc-api</artifactId>

    <version>1.1</version>

  </dependency>

</dependencies>

另請注意:maven 顯示的錯誤告訴您可以從 url 手動下載 jar,它不是存儲庫。


只回答問題的標(biāo)題可以在pom.xml中添加一個倉庫,但是maven中央倉庫不需要添加,所以我給你舉個例子,另一個倉庫:


<repositories>

    <repository>

        <id>jitpack</id>

        <name>jitpack</name>

        <url>https://jitpack.io</url>

    </repository>

</repositories>


查看完整回答
反對 回復(fù) 2022-01-06
  • 3 回答
  • 0 關(guān)注
  • 238 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號