Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump analysis-pom from 5.14.0 to 5.17.0 #391

Merged
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 plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-pom</artifactId>
<version>5.14.0</version>
<version>5.17.0</version>
<relativePath />
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
* collect a statistical summary for all containing commits. This includes the commits count, the changed files count,
* and the added and deleted lines in those commits.
* </p>
*
* <p>
* Additionally, the classes in this package will collect commit statistics for all repository files in the style of
* the book "Code as a Crime Scene":
* </p>
* <ul>
* <li> commits count </li>
* <li> different authors count </li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*
* @author Ullrich Hafner
*/
@SuppressWarnings("checkstyle:LambdaBodyLength")
public class DiffsCollectorITest extends GitITest {
private static final String MOVED_FILE = "moved";
private static final String AUTHOR = "author";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ void shouldFillModel() {

Descriptor descriptor = new Descriptor(jenkins, model);


FreeStyleProject project = mock(FreeStyleProject.class);
assertThat(descriptor.doFillReferenceJobItems(project)).isEqualTo(new ComboBoxModel());
verifyNoInteractions(model);
Expand Down