Author: tchemit Date: 2010-01-21 07:53:40 +0100 (Thu, 21 Jan 2010) New Revision: 100 Modified: trunk/maven-jredmine-plugin/src/main/java/org/nuiton/jredmine/plugin/DisplayDataMojo.java Log: Anomalie #244: Le goal display-data ne requiere pas d'autentification Modified: trunk/maven-jredmine-plugin/src/main/java/org/nuiton/jredmine/plugin/DisplayDataMojo.java =================================================================== --- trunk/maven-jredmine-plugin/src/main/java/org/nuiton/jredmine/plugin/DisplayDataMojo.java 2010-01-21 06:34:50 UTC (rev 99) +++ trunk/maven-jredmine-plugin/src/main/java/org/nuiton/jredmine/plugin/DisplayDataMojo.java 2010-01-21 06:53:40 UTC (rev 100) @@ -33,6 +33,8 @@ /** * Display in console some data from redmine's server. + * <p/> + * This goals requires no authentication to the server. * * @author tchemit * @goal display-data @@ -59,6 +61,24 @@ */ protected String types; /** + * The redmine's server login. + * + * Note: This parameter is not used, but override the required parameter of the abstract mojo. + * + * @parameter expression="${redmine.username}" + * @since 1.0.0 + */ + protected String username; + /** + * The redmine's server password. + * + * Note: This parameter is not used, but override the required parameter of the abstract mojo. + * + * @parameter expression="${redmine.password}" + * @since 1.0.0 + */ + protected String password; + /** * list of actions to perform */ protected List<RedmineModelEnum> actions; @@ -86,7 +106,6 @@ @Override protected void init() throws Exception { -// protected boolean init() throws Exception { super.init(); if (!safe && !initOk) {
participants (1)
-
tchemit@users.nuiton.org