You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Nascif A. Abousalh-Neto (JIRA)" <ji...@codehaus.org> on 2005/06/29 17:53:53 UTC

[jira] Created: (MPDASHBOARD-29) Aggregators for Macker and Lint4J

Aggregators for Macker and Lint4J
---------------------------------

         Key: MPDASHBOARD-29
         URL: http://jira.codehaus.org/browse/MPDASHBOARD-29
     Project: maven-dashboard-plugin
        Type: New Feature
    Versions: 1.9    
 Environment: Tested with Dashboard 1.7 on Maven 1.0.2, may need adjustments for the latest version.
    Reporter: Nascif A. Abousalh-Neto
 Attachments: lint4jfiles.jelly, lint4jviolations.jelly, mackerviolations.jelly

As the title says, see the attachment for aggregators for Macker  (http://maven-plugins.sourceforge.net/maven-macker-plugin/index.html)  and Lint4J (http://www.jutils.com/maven-plugin.html).

Add the attachments to the plugin-resources directory.
Then add to dashboard project.properties:

# Lint4J: number of files
maven.dashboard.aggregator.lint4jfiles.script = ${maven.dashboard.aggregators.dir}/lint4jfiles.jelly
maven.dashboard.aggregator.lint4jfiles.artifact = ${maven.build.dir}/lint4j-raw-report.xml
maven.dashboard.aggregator.lint4jfiles.label = Lint4J Files Total
maven.dashboard.aggregator.lint4jfiles.goal = maven-lint4j-plugin:report
maven.dashboard.aggregator.lint4jfiles.description = Total number of files with Lint4j violations
maven.dashboard.aggregator.lint4jfiles.report = lint4j-report.html

# Lint4J: number of violations
maven.dashboard.aggregator.lint4jviolations.script = ${maven.dashboard.aggregators.dir}/lint4jviolations.jelly
maven.dashboard.aggregator.lint4jviolations.artifact = ${maven.build.dir}/lint4j-raw-report.xml
maven.dashboard.aggregator.lint4jviolations.label = Lint4J Total of Violations
maven.dashboard.aggregator.lint4jviolations.goal = maven-lint4j-plugin:report
maven.dashboard.aggregator.lint4jviolations.description = Number of Lint4j violations
maven.dashboard.aggregator.lint4jviolations.report = lint4j-report.html

# Macker: number of violations
maven.dashboard.aggregator.mackerviolations.script = ${maven.dashboard.aggregators.dir}/mackerviolations.jelly
maven.dashboard.aggregator.mackerviolations.artifact = ${maven.build.dir}/macker/macker-report.xml
maven.dashboard.aggregator.mackerviolations.label = Macker Violations
maven.dashboard.aggregator.mackerviolations.goal = maven-macker-plugin:report
maven.dashboard.aggregator.mackerviolations.description = Number of Macker violations
maven.dashboard.aggregator.mackerviolations.report = macker-report.html


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MPDASHBOARD-29) Aggregators for Macker and Lint4J

Posted by "Vincent Massol (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MPDASHBOARD-29?page=comments#action_42189 ] 

Vincent Massol commented on MPDASHBOARD-29:
-------------------------------------------

Hi Nascif,

That's great but we also need some testcases to prove that they work. Do you think you could update the existing tests in src/plugin-test?

Thanks a lot

> Aggregators for Macker and Lint4J
> ---------------------------------
>
>          Key: MPDASHBOARD-29
>          URL: http://jira.codehaus.org/browse/MPDASHBOARD-29
>      Project: maven-dashboard-plugin
>         Type: New Feature
>     Versions: 1.9
>  Environment: Tested with Dashboard 1.7 on Maven 1.0.2, may need adjustments for the latest version.
>     Reporter: Nascif A. Abousalh-Neto
>  Attachments: lint4jfiles.jelly, lint4jviolations.jelly, mackerviolations.jelly
>
>
> As the title says, see the attachment for aggregators for Macker  (http://maven-plugins.sourceforge.net/maven-macker-plugin/index.html)  and Lint4J (http://www.jutils.com/maven-plugin.html).
> Add the attachments to the plugin-resources directory.
> Then add to dashboard project.properties:
> # Lint4J: number of files
> maven.dashboard.aggregator.lint4jfiles.script = ${maven.dashboard.aggregators.dir}/lint4jfiles.jelly
> maven.dashboard.aggregator.lint4jfiles.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jfiles.label = Lint4J Files Total
> maven.dashboard.aggregator.lint4jfiles.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jfiles.description = Total number of files with Lint4j violations
> maven.dashboard.aggregator.lint4jfiles.report = lint4j-report.html
> # Lint4J: number of violations
> maven.dashboard.aggregator.lint4jviolations.script = ${maven.dashboard.aggregators.dir}/lint4jviolations.jelly
> maven.dashboard.aggregator.lint4jviolations.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jviolations.label = Lint4J Total of Violations
> maven.dashboard.aggregator.lint4jviolations.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jviolations.description = Number of Lint4j violations
> maven.dashboard.aggregator.lint4jviolations.report = lint4j-report.html
> # Macker: number of violations
> maven.dashboard.aggregator.mackerviolations.script = ${maven.dashboard.aggregators.dir}/mackerviolations.jelly
> maven.dashboard.aggregator.mackerviolations.artifact = ${maven.build.dir}/macker/macker-report.xml
> maven.dashboard.aggregator.mackerviolations.label = Macker Violations
> maven.dashboard.aggregator.mackerviolations.goal = maven-macker-plugin:report
> maven.dashboard.aggregator.mackerviolations.description = Number of Macker violations
> maven.dashboard.aggregator.mackerviolations.report = macker-report.html

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MPDASHBOARD-29) Aggregators for Macker and Lint4J

Posted by "Nascif A. Abousalh-Neto (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MPDASHBOARD-29?page=comments#action_42190 ] 

Nascif A. Abousalh-Neto commented on MPDASHBOARD-29:
----------------------------------------------------

Any easy way I can dowload the whole tree to run the tests?
The only download I found was for the plugin (just jelly files) and even though I can read the testcases using the ViewCVS, last time I tried I was not able to check out using SVN. I think it is my company firewall but I am not sure.


> Aggregators for Macker and Lint4J
> ---------------------------------
>
>          Key: MPDASHBOARD-29
>          URL: http://jira.codehaus.org/browse/MPDASHBOARD-29
>      Project: maven-dashboard-plugin
>         Type: New Feature
>     Versions: 1.9
>  Environment: Tested with Dashboard 1.7 on Maven 1.0.2, may need adjustments for the latest version.
>     Reporter: Nascif A. Abousalh-Neto
>  Attachments: lint4jfiles.jelly, lint4jviolations.jelly, mackerviolations.jelly
>
>
> As the title says, see the attachment for aggregators for Macker  (http://maven-plugins.sourceforge.net/maven-macker-plugin/index.html)  and Lint4J (http://www.jutils.com/maven-plugin.html).
> Add the attachments to the plugin-resources directory.
> Then add to dashboard project.properties:
> # Lint4J: number of files
> maven.dashboard.aggregator.lint4jfiles.script = ${maven.dashboard.aggregators.dir}/lint4jfiles.jelly
> maven.dashboard.aggregator.lint4jfiles.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jfiles.label = Lint4J Files Total
> maven.dashboard.aggregator.lint4jfiles.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jfiles.description = Total number of files with Lint4j violations
> maven.dashboard.aggregator.lint4jfiles.report = lint4j-report.html
> # Lint4J: number of violations
> maven.dashboard.aggregator.lint4jviolations.script = ${maven.dashboard.aggregators.dir}/lint4jviolations.jelly
> maven.dashboard.aggregator.lint4jviolations.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jviolations.label = Lint4J Total of Violations
> maven.dashboard.aggregator.lint4jviolations.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jviolations.description = Number of Lint4j violations
> maven.dashboard.aggregator.lint4jviolations.report = lint4j-report.html
> # Macker: number of violations
> maven.dashboard.aggregator.mackerviolations.script = ${maven.dashboard.aggregators.dir}/mackerviolations.jelly
> maven.dashboard.aggregator.mackerviolations.artifact = ${maven.build.dir}/macker/macker-report.xml
> maven.dashboard.aggregator.mackerviolations.label = Macker Violations
> maven.dashboard.aggregator.mackerviolations.goal = maven-macker-plugin:report
> maven.dashboard.aggregator.mackerviolations.description = Number of Macker violations
> maven.dashboard.aggregator.mackerviolations.report = macker-report.html

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MPDASHBOARD-29) Aggregators for Macker and Lint4J

Posted by "Vincent Massol (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MPDASHBOARD-29?page=comments#action_42219 ] 

Vincent Massol commented on MPDASHBOARD-29:
-------------------------------------------

hmm... SVN is using HTTP... so using the following URL should work very fine: http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/dashboard/

Alternatively you could  use cvsgrab to get the sources from viewcvs (http://svn.apache.org/viewcvs.cgi/maven/maven-1/plugins/trunk/dashboard/). 

But the best way is really to simply checkout using a SVN client like TortoiseSVN if you're on windows (there's a config tab for proxy settings).

> Aggregators for Macker and Lint4J
> ---------------------------------
>
>          Key: MPDASHBOARD-29
>          URL: http://jira.codehaus.org/browse/MPDASHBOARD-29
>      Project: maven-dashboard-plugin
>         Type: New Feature
>     Versions: 1.9
>  Environment: Tested with Dashboard 1.7 on Maven 1.0.2, may need adjustments for the latest version.
>     Reporter: Nascif A. Abousalh-Neto
>  Attachments: lint4jfiles.jelly, lint4jviolations.jelly, mackerviolations.jelly
>
>
> As the title says, see the attachment for aggregators for Macker  (http://maven-plugins.sourceforge.net/maven-macker-plugin/index.html)  and Lint4J (http://www.jutils.com/maven-plugin.html).
> Add the attachments to the plugin-resources directory.
> Then add to dashboard project.properties:
> # Lint4J: number of files
> maven.dashboard.aggregator.lint4jfiles.script = ${maven.dashboard.aggregators.dir}/lint4jfiles.jelly
> maven.dashboard.aggregator.lint4jfiles.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jfiles.label = Lint4J Files Total
> maven.dashboard.aggregator.lint4jfiles.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jfiles.description = Total number of files with Lint4j violations
> maven.dashboard.aggregator.lint4jfiles.report = lint4j-report.html
> # Lint4J: number of violations
> maven.dashboard.aggregator.lint4jviolations.script = ${maven.dashboard.aggregators.dir}/lint4jviolations.jelly
> maven.dashboard.aggregator.lint4jviolations.artifact = ${maven.build.dir}/lint4j-raw-report.xml
> maven.dashboard.aggregator.lint4jviolations.label = Lint4J Total of Violations
> maven.dashboard.aggregator.lint4jviolations.goal = maven-lint4j-plugin:report
> maven.dashboard.aggregator.lint4jviolations.description = Number of Lint4j violations
> maven.dashboard.aggregator.lint4jviolations.report = lint4j-report.html
> # Macker: number of violations
> maven.dashboard.aggregator.mackerviolations.script = ${maven.dashboard.aggregators.dir}/mackerviolations.jelly
> maven.dashboard.aggregator.mackerviolations.artifact = ${maven.build.dir}/macker/macker-report.xml
> maven.dashboard.aggregator.mackerviolations.label = Macker Violations
> maven.dashboard.aggregator.mackerviolations.goal = maven-macker-plugin:report
> maven.dashboard.aggregator.mackerviolations.description = Number of Macker violations
> maven.dashboard.aggregator.mackerviolations.report = macker-report.html

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org