Maven 数据驱动开发的易用性?

Maven 数据驱动开发的易用性?,maven,bdd,maven-plugin,easyb,Maven,Bdd,Maven Plugin,Easyb,在最新版本的easyb(0.9.8.2)中,似乎可以使用“where”和“example”语句来实现数据驱动测试 在我的POM中,我使用的是最新版本的easyb插件 <plugin> <groupId>org.easyb</groupId> <artifactId>maven-easyb-plugin</artifactId>

在最新版本的easyb(0.9.8.2)中,似乎可以使用“where”和“example”语句来实现数据驱动测试

在我的POM中,我使用的是最新版本的easyb插件

            <plugin>
                <groupId>org.easyb</groupId>
                <artifactId>maven-easyb-plugin</artifactId>
                <version>1.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                  <storyreport>${project.build.directory}/easyb/easyb-stories.txt</storyreport>
                  <xmlreport>${project.build.directory}/easyb/report.xml</xmlreport>
                </configuration>
            </plugin>

org.easyb
maven易用插件
1.1
测试
${project.build.directory}/easyb/easyb-stories.txt
${project.build.directory}/easyb/report.xml
但是我不能让“where”/“example”语句起作用。我试图添加一个依赖项,例如

         <dependency>
           <groupId>org.easyb</groupId>
           <artifactId>easyb</artifactId>
           <version>0.9.8.2</version>
        </dependency>

org.easyb
容易的
0.9.8.2
但还是什么都没有,我还缺什么吗

干杯,
塞巴斯蒂亚诺

事实上,它是通过依赖性工作的,我想我们可以结束这个问题