base class for tests is optional

This commit is contained in:
Mariusz Smykula
2016-03-28 14:06:47 +02:00
parent 252cf3e068
commit 7c4f6de2d1
2 changed files with 1 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ public class GenerateSpecsMojo extends AbstractMojo {
@Parameter(property = "basePackageForTests", defaultValue = "io.codearte.accurest.tests")
private String basePackageForTests;
@Parameter(property = "baseClassForTests", required = true)
@Parameter(property = "baseClassForTests")
private String baseClassForTests;
public GenerateSpecsMojo() {

View File

@@ -60,9 +60,6 @@
</goals>
</execution>
</executions>
<configuration>
<baseClassForTests>com.ofg.twitter.place.BaseMockMvcSpec</baseClassForTests>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>