+
+ See Violation Comments to Bitbucket Server Plugin for details on how to configure and use this plugin.
+
+
+
+ Filename patterns are optional. The syntax is Apache DirectoryScanner, for example **/*.xml matches xml-files anywhere in workspace.
+
+
diff --git a/src/main/resources/org/jenkinsci/plugins/jvcts/ViolationsToStashRecorder/help.html b/src/main/resources/org/jenkinsci/plugins/jvcts/ViolationsToStashRecorder/help.html
deleted file mode 100644
index 0e9777a..0000000
--- a/src/main/resources/org/jenkinsci/plugins/jvcts/ViolationsToStashRecorder/help.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- See Jenkins Violations Plugin for details on how to configure and use this plugin.
-
-
-
- Filename patterns are optional. The syntax is Apache DirectoryScanner, for example **/*.xml matches xml-files anywhere in workspace.
-
-
diff --git a/src/test/java/org/jenkinsci/plugins/jvcts/perform/JvctsPerformerParseTest.java b/src/test/java/org/jenkinsci/plugins/jvcts/perform/JvctsPerformerParseTest.java
index 921b0b1..b894c7d 100644
--- a/src/test/java/org/jenkinsci/plugins/jvcts/perform/JvctsPerformerParseTest.java
+++ b/src/test/java/org/jenkinsci/plugins/jvcts/perform/JvctsPerformerParseTest.java
@@ -10,22 +10,22 @@
import static org.jenkinsci.plugins.jvcts.utils.JvctsTestUtils.assertRequested;
import static org.jenkinsci.plugins.jvcts.utils.JvctsTestUtils.getWorkspace;
import static org.jenkinsci.plugins.jvcts.utils.JvctsTestUtils.preConfigure;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.CHANGES_GET;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_1_DELETE;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_2_DELETE;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_CHECKSTYLEFILE_GET;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_FINDBUGS_GET;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_PMDANDCHECKSTYLE_GET;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.COMMENTS_PMDFILE_GET;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.fake;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.prToCommit;
-import static org.jenkinsci.plugins.jvcts.utils.StashClientFaker.readFile;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.CHANGES_GET;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_1_DELETE;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_2_DELETE;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_CHECKSTYLEFILE_GET;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_FINDBUGS_GET;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_PMDANDCHECKSTYLE_GET;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.COMMENTS_PMDFILE_GET;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.fake;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.prToCommit;
+import static org.jenkinsci.plugins.jvcts.utils.BitbucketServerClientFaker.readFile;
import hudson.model.StreamBuildListener;
import java.io.IOException;
import org.jenkinsci.plugins.jvcts.config.ParserConfig;
-import org.jenkinsci.plugins.jvcts.config.ViolationsToStashConfig;
+import org.jenkinsci.plugins.jvcts.config.ViolationsToBitbucketServerConfig;
import org.junit.Test;
import com.google.common.collect.ImmutableList;
@@ -35,10 +35,10 @@ public class JvctsPerformerParseTest {
@Test
public void testThatPullRequestCheckstyleIsCommented() throws IOException {
fake(CHANGES_GET, readFile("pullrequestchanges_1_GET.json"));
- ViolationsToStashConfig config = preConfigure(new ImmutableList.Builder