0
當我運行我非常非常基本的黃瓜測試時,我不斷髮現小黃瓜「找不到格式化程序」錯誤。Maven pom有工作黃瓜
任何想法?我真的希望人們只是做IT 容易,它總是這樣一個痛苦的設置的東西,/咆哮
下面是我的Maven POM,但首先的錯誤,我得到:
java.lang.NoClassDefFoundError:小黃瓜/格式化/格式化器
無論如何,我會給任何人提供500賞金給這個解決方案,這是可笑的。
<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>cucumber-a</groupId>
<artifactId>cucumber-a</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>cucumber</name>
<description>Basic Playground for Cucumber</description>
<dependencies>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
好吧,我讀了它,我是最後一個承諾骨架項目的人。我同意,文檔可以改進。 –