我是Maven的新手,所以如果這太基本了,請原諒我。我已經搜索了這個問題,每個人似乎都解決了從pom.xml文件中移除標籤的問題。Maven:包org.junit不存在
我沒有這個標籤有:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>GraphApp</groupId>
<artifactId>GraphApp</artifactId>
<version>1.0.0</version>
<name>MyApp</name>
<description>MyApp</description>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
我已經轉換與Eclipse現有的項目,所以這個問題可能來自。
此外,我已經讀過,Maven的默認架構是將代碼存儲在某些默認文件夾中,而我使用的是src/com/romanrdgz/core/myapp
和/test/com/romanrdgz/test/core
。這也可能是問題的根源。
我看到這個錯誤:
Maven: package org.junit does not exist
我需要做什麼改變嗎?
編輯:好吧,我已經包含JUnit4的依賴性,我也改變了我的文件夾是這樣的:
不過,當我去安慰和執行mvn test
或mvn compile
,我得到的以下輸出:
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building GraphApp 1.0.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ GraphApp -
--
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,
i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory C:\Users\rrrp\workspace\GraphApp\src\
main\resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ GraphApp ---
[INFO] Nothing to compile - all classes are up to date
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.515 s
[INFO] Finished at: 2015-04-15T08:15:06+02:00
[INFO] Final Memory: 11M/309M
[INFO] ------------------------------------------------------------------------
我試過擦除bin和目標文件夾,但仍然是相同的。看起來它沒有找到類和測試。
任何幫助?
請張貼實際的堆棧跟蹤。 – beerbajay
將junit依賴關係添加到pom – Reimeus
@Reimeus嘗試過,但eclipse將其顯示爲錯誤。我應該在哪裏添加它? –