本文介紹了';Dependency.Version';缺少錯誤,但版本在父級中管理的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有一個包含多個模塊的Maven項目。在Eclipse(Juno,帶有M2E)中,它似乎編譯得很好。但是,當我在其中一個模塊上執行maven安裝時,構建立即失敗。
父POM:
<groupId>com.sw.system4</groupId>
<artifactId>system4-parent</artifactId>
<version>${system4.version}</version>
<packaging>pom</packaging>
<name>System 4 Parent Project</name>
<modules>
<module>system4-data</module>
...others...
</modules>
<properties>
<system4.version>0.0.1-SNAPSHOT</system4.version>
<spring.version>3.2.3.RELEASE</spring.version>
... others...
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
<scope>runtime</scope>
</dependency>
... lots of others ...
</dependencies>
</dependencyManagement>
子POM:
<parent>
<groupId>com.sw.system4</groupId>
<artifactId>system4-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>system4-data</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<scope>runtime</scope>
</dependency>
... lots of others...
</dependencies>
生成時,我得到以下輸出:
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project com.sw.system4:system4-data:0.0.1-SNAPSHOT (C:workeclips
e_workspacessystemivsystem4-parentsystem4-datapom.xml) has 8 errors
[ERROR] 'dependencies.dependency.version' for org.springframework:spring-cor
e:jar is missing. @ line 16, column 16
... others omitted for clarity ...
我不明白為什么它甚至不嘗試編譯。我已經嘗試從父對象和子對象中刪除運行時作用域,但沒有什么不同。請幫幫忙!
推薦答案
我覺得你可以試試:
將版本的文本值放入子級POM
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.2.3.RELEASE</version>
<scope>runtime</scope>
</dependency>
清除通常位于C:Usersuser.m2的.m2緩存儲存庫。我會說,當我在maven工作的時候,我經常這樣做。特別是在承諾之前,這樣我才能更有信心CI會參選。您不必每次都清除該文件夾,有時只需您的項目包和.cache文件夾就足夠了。
將relativePath標記添加到父POM聲明
<parent>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<version>1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
看起來你的POMS總共有8個錯誤。在添加父POM和屬性之前,我會嘗試運行一些基本編譯。
這篇關于';Dependency.Version';缺少錯誤,但版本在父級中管理的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,