Skip to content

Commit a2ab515

Browse files
author
Jakub Zacek
committed
#309 - added Copyright notes and ReleaseNotes
1 parent 4b76f14 commit a2ab515

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

ReleaseNotes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@
117117
Added new methods to JenkinsServer for stopping and restarting Jenkins. The methods are restart(Boolean crumbFlag), safeRestart(Boolean crumbFlag), exit(Boolean crumbFlag) and safeExit(Boolean crumbFlag)
118118

119119
Thanks for that to [Chids](https://github.com/Chids-gs).
120+
121+
* [Fixed Issue 309](https://github.com/jenkinsci/java-client-api/issues/309)
122+
123+
Added possibility to get mode detailed data from Maven Modules from Jobs/Builds
124+
125+
Thanks for that to [Jakub Zacek](https://github.com/dawon).
120126

121127
## Release 0.3.7
122128

jenkins-client/src/main/java/com/offbytwo/jenkins/model/MavenModule.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1+
/*
2+
* Copyright (c) 2018 Cosmin Stejerean, Karl Heinz Marbaise, and contributors.
3+
*
4+
* Distributed under the MIT license: http://opensource.org/licenses/MIT
5+
*/
16
package com.offbytwo.jenkins.model;
27

38
import java.io.IOException;
49
import java.util.List;
5-
10+
/**
11+
*
12+
* @author Karl Heinz Marbaise, Ricardo Zanini, René Scheibe, Jakub Zacek
13+
*/
614
public class MavenModule extends BaseModel {
715

816
private List<MavenModuleRecord> moduleRecords;

jenkins-client/src/main/java/com/offbytwo/jenkins/model/MavenModuleWithDetails.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2018 Cosmin Stejerean, Karl Heinz Marbaise, and contributors.
3+
*
4+
* Distributed under the MIT license: http://opensource.org/licenses/MIT
5+
*/
16
package com.offbytwo.jenkins.model;
27

38
import com.google.common.base.Function;
@@ -10,8 +15,9 @@
1015
import java.util.List;
1116

1217
/**
13-
*
14-
* @author zacekj1
18+
* Model Class for Maven Modules
19+
*
20+
* @author Jakub Zacek
1521
*/
1622
public class MavenModuleWithDetails extends BaseModel {
1723

0 commit comments

Comments
 (0)