Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-pom</artifactId>
<version>10.11.0</version>
<version>10.14.0</version>
<relativePath />
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*
* @author Florian Orendi
*/
@SuppressWarnings("PMD.DataClass")
public class Change implements Serializable {
@Serial
private static final long serialVersionUID = 1543635877389921937L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*
* @author Florian Orendi
*/
@SuppressWarnings("PMD.DataClass")
public class Delta implements Serializable {
@Serial
private static final long serialVersionUID = 5641235877389921937L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*
* @author Florian Orendi
*/
@SuppressWarnings("PMD.DataClass")
public class FileChanges implements Serializable {
@Serial
private static final long serialVersionUID = 6135245877389921937L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
*
* @author Ullrich Hafner
*/
@SuppressWarnings("PMD.DataClass")
public class CommitStatisticsBuildAction extends InvisibleAction implements LastBuildAction, RunAction2, Serializable {
@Serial
private static final long serialVersionUID = -263122257268060032L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ public List<Object> getRows() {
/**
* A table row that shows details about a specific file.
*/
@SuppressWarnings("PMD.DataClass") // Used to automatically convert to JSON object
public static class ForensicsRow {
private final String id;
private final String author;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*
* @author Ullrich Hafner
*/
@SuppressWarnings("PMD.DataClass")
public class ForensicsBuildAction extends BuildAction<RepositoryStatistics> implements StaplerProxy {
@Serial
private static final long serialVersionUID = -263122257268060032L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public List<Object> getRows() {
/**
* A table row that shows the source control statistics.
*/
@SuppressWarnings("PMD.DataClass") // Used to automatically convert to JSON object
public static class ForensicsRow {
private final FileStatistics fileStatistics;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
* @author Arne Schöntag
* @author Ullrich Hafner
*/
@SuppressWarnings("PMD.DataClass")
public abstract class ReferenceRecorder extends SimpleReferenceRecorder {
private static final String DEFAULT_TARGET_BRANCH = "master";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
* @author Arne Schöntag
* @author Ullrich Hafner
*/
@SuppressWarnings({"PMD.ExcessiveImports", "PMD.CouplingBetweenObjects"})
public class SimpleReferenceRecorder extends Recorder implements SimpleBuildStep {
private final JenkinsFacade jenkins;
private String referenceJob = StringUtils.EMPTY;
Expand Down
Loading