0
彈簧引導依賴項的最新版本 缺少pom,pom.md5和pom.shal。缺少pom彈簧引導依賴項
不太清楚,如果這是正確的方式 - 但也有人把它們存在或改變的maven-metadata.xml中位於前構建點?
編輯:
在構建過程中錯誤
Failed to collect dependencies at org.springframework.statemachine:spring-statemachine-core:jar:2.0.0.BUILD-SNAPSHOT: Failed to read artifact descriptor for org.springframework.statemachine:spring-statemachine-core:jar:2.0.0.BUILD-SNAPSHOT: Could not find artifact org.springframework.boot:spring-boot-dependencies:pom:2.0.0.BUILD-20171005.042611-1 in spring.io.snapshot (http://repo.spring.io/snapshot) -> [Help 1]
感謝
EDIT2:
暫且 - 直到問題被固定 - 我做了以下(不漂亮但作品):
排除spring-boot-dependenc所有依賴關係都與遠程啓動有關。
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
</exclusion>
</exclusions>
從maven central添加了spring-boot-dependencies依賴項。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.0.M3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
你知道如何使用這些文件的pom?你有沒有試過http://start.spring.io/? – khmarbaise
問題是,maven-metadata.xml指向一個新的構建,併爲此構建我所描述的文件丟失。 - 在我的項目構建過程中出現此錯誤:無法收集org.springframework.statemachine的依賴項:spring-statemachine-core:jar:2.0.0.BUILD-SNAPSHOT:無法讀取org.springframework的工件描述符。 statemachine:spring-statemachine-core:jar:2.0.0.BUILD-SNAPSHOT:在spring.io中找不到工件org.springframework.boot:spring-boot-dependencies:pom:2.0.0.BUILD-20171005.042611-1。快照(http://repo.spring.io/snapshot) - > [Help 1] – Eric
爲什麼使用SNAPSHOT構建而不是Spring的里程碑構建? – khmarbaise