diff --git a/test/src/main/java/org/jvnet/hudson/test/PluginAutomaticTestBuilder.java b/test/src/main/java/org/jvnet/hudson/test/PluginAutomaticTestBuilder.java index 078521a4928d7ccc150b60304b8e2a54b6590272..ac447105146c2c42883dfb57a74ccce8a4ca4204 100644 --- a/test/src/main/java/org/jvnet/hudson/test/PluginAutomaticTestBuilder.java +++ b/test/src/main/java/org/jvnet/hudson/test/PluginAutomaticTestBuilder.java @@ -36,8 +36,14 @@ public class PluginAutomaticTestBuilder { /** * @param params * Various information about the plugin that maven-hpi-plugin adds. + * As of 1.52, this includes the followings: + * + * basedir (String) : directory that contains pom.xml + * artifactId (String) : artifact ID of the plugin + * outputDirectory (String) : target/classes dir where class files and resources can be found + * testOutputDirectory (String) : target/test-classes. */ - public static TestSuite build(Map params) { + public static TestSuite build(Map params) { return new TestSuite(); } }