Skip to content

Commit

Permalink
Need to override SDElements descriptor to fix spelling. #25
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsNielsen committed May 2, 2018
1 parent 0a6103c commit cf3498c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/io/jenkins/plugins/sdelements/SDElements.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ public boolean configure(StaplerRequest req, JSONObject json) throws FormExcepti
return true;
}

@Nonnull
@Override
public String getDisplayName() {
return "SD Elements";
}

@Override
public boolean isApplicable(Class<? extends AbstractProject> aClass) {
return true;
Expand Down

0 comments on commit cf3498c

Please sign in to comment.