Author: olamy
Date: Fri Jan 23 04:21:02 2015
New Revision: 1654114
URL: http://svn.apache.org/r1654114
Log:
formatting
Modified:
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/announcement/AnnouncementMojo.java
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/github/GitHubMojo.java
Modified:
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/announcement/AnnouncementMojo.java
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/announcement/AnnouncementMojo.java?rev=1654114&r1=1654113&r2=1654114&view=diff
==============================================================================
---
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/announcement/AnnouncementMojo.java
(original)
+++
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/announcement/AnnouncementMojo.java
Fri Jan 23 04:21:02 2015
@@ -456,10 +456,10 @@ public class AnnouncementMojo
/**
* The settings.xml server id to be used to authenticate into github api
domain. Only use if using github enterprise.
- *
+ *
* @since 2.12
*/
- @Parameter ( defaultValue = "github" )
+ @Parameter( defaultValue = "github" )
private String githubAPIServerId;
private ReleaseUtils releaseUtils = new ReleaseUtils( getLog() );
Modified:
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/github/GitHubMojo.java
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/github/GitHubMojo.java?rev=1654114&r1=1654113&r2=1654114&view=diff
==============================================================================
---
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/github/GitHubMojo.java
(original)
+++
maven/plugins/trunk/maven-changes-plugin/src/main/java/org/apache/maven/plugin/github/GitHubMojo.java
Fri Jan 23 04:21:02 2015
@@ -44,7 +44,7 @@ import java.util.ResourceBundle;
* @author Bryan Baugher
* @since 2.8
*/
-@Mojo ( name = "github-report", threadSafe = true )
+@Mojo( name = "github-report", threadSafe = true )
public class GitHubMojo
extends AbstractChangesReport
{
@@ -79,25 +79,25 @@ public class GitHubMojo
* <code>Updated</code>.
* </p>
*/
- @Parameter ( defaultValue =
"Id,Type,Summary,Assignee,Reporter,Status,Created,Updated,Fix Version" )
+ @Parameter( defaultValue =
"Id,Type,Summary,Assignee,Reporter,Status,Created,Updated,Fix Version" )
private String columnNames;
/**
* The scheme of your github api domain. Only use if using github
enterprise.
*/
- @Parameter ( defaultValue = "http" )
+ @Parameter( defaultValue = "http" )
private String githubAPIScheme;
/**
* The port of your github api domain. Only use if using github enterprise.
*/
- @Parameter ( defaultValue = "80" )
+ @Parameter( defaultValue = "80" )
private int githubAPIPort;
/**
* The settings.xml server id to be used to authenticate into github api
domain. Only use if using github enterprise.
*/
- @Parameter ( defaultValue = "github" )
+ @Parameter( defaultValue = "github" )
private String githubAPIServerId;
/**
@@ -109,13 +109,13 @@ public class GitHubMojo
/**
* Boolean which says if we should include open issues in the report.
*/
- @Parameter ( defaultValue = "true" )
+ @Parameter( defaultValue = "true" )
private boolean includeOpenIssues;
/**
* Boolean which says if we should include only issues with milestones.
*/
- @Parameter ( defaultValue = "true" )
+ @Parameter( defaultValue = "true" )
private boolean onlyMilestoneIssues;
/**
@@ -123,7 +123,7 @@ public class GitHubMojo
* The current version being used is <code>${project.version}</code> minus
* any "-SNAPSHOT" suffix.
*/
- @Parameter ( defaultValue = "false" )
+ @Parameter( defaultValue = "false" )
private boolean onlyCurrentVersion;
public String getOutputName()