You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Cyrill Ruettimann (JIRA)" <ji...@codehaus.org> on 2005/11/17 12:22:06 UTC

[jira] Created: (MPCHECKSTYLE-45) OutOfMemoryException occured while generating the report

OutOfMemoryException occured while generating the report
--------------------------------------------------------

         Key: MPCHECKSTYLE-45
         URL: http://jira.codehaus.org/browse/MPCHECKSTYLE-45
     Project: maven-checkstyle-plugin
        Type: Bug
    Versions: 2.0    
 Environment: Solaris 8, JDK 1.4.2_03, checkstyle plugin 2.0-beta1
    Reporter: Cyrill Ruettimann


While generating the checkstyle report, maven exits with an out of memory exception. This happened on a project with many classes (around 300) with many style breaches.

Probably you can pass the heap configuration to the vm executing the checkstyle report as the javadoc-plugin:

<configuration>
          <minmemory>128m</minmemory>
          <maxmemory>512m</maxmemory>
</configuration>


-- 
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] Updated: (MNG-1599) OutOfMemoryException occured while generating the report

Posted by "Lukas Theussl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1599?page=all ]

Lukas Theussl updated MNG-1599:
-------------------------------

    Component: maven-checkstyle-plugin

> OutOfMemoryException occured while generating the report
> --------------------------------------------------------
>
>          Key: MNG-1599
>          URL: http://jira.codehaus.org/browse/MNG-1599
>      Project: Maven 2
>         Type: Bug
>   Components: maven-checkstyle-plugin
>     Versions: 2.0
>  Environment: Solaris 8, JDK 1.4.2_03, checkstyle plugin 2.0-beta1
>     Reporter: Cyrill Ruettimann

>
>
> While generating the checkstyle report, maven exits with an out of memory exception. This happened on a project with many classes (around 300) with many style breaches.
> Probably you can pass the heap configuration to the vm executing the checkstyle report as the javadoc-plugin:
> <configuration>
>           <minmemory>128m</minmemory>
>           <maxmemory>512m</maxmemory>
> </configuration>

-- 
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: (MCHECKSTYLE-2) OutOfMemoryException occured while generating the report

Posted by "Dave Sag (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MCHECKSTYLE-2?page=comments#action_59647 ] 

Dave Sag commented on MCHECKSTYLE-2:
------------------------------------

i am also getting this out of memory error with checkstyle.  375 classes and i am guessing loads of errors as this seems to be the first time anyone has run checkstyle on this code.


> OutOfMemoryException occured while generating the report
> --------------------------------------------------------
>
>          Key: MCHECKSTYLE-2
>          URL: http://jira.codehaus.org/browse/MCHECKSTYLE-2
>      Project: Maven 2.x Checkstyle Plugin
>         Type: Bug

>  Environment: Solaris 8, JDK 1.4.2_03, checkstyle plugin 2.0-beta1
>     Reporter: Cyrill Ruettimann

>
>
> While generating the checkstyle report, maven exits with an out of memory exception. This happened on a project with many classes (around 300) with many style breaches.
> Probably you can pass the heap configuration to the vm executing the checkstyle report as the javadoc-plugin:
> <configuration>
>           <minmemory>128m</minmemory>
>           <maxmemory>512m</maxmemory>
> </configuration>

-- 
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: (MNG-1599) OutOfMemoryException occured while generating the report

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1599?page=comments#action_52269 ] 

John Casey commented on MNG-1599:
---------------------------------

this would require a forked checkstyle process, right?

> OutOfMemoryException occured while generating the report
> --------------------------------------------------------
>
>          Key: MNG-1599
>          URL: http://jira.codehaus.org/browse/MNG-1599
>      Project: Maven 2
>         Type: Bug
>   Components: maven-checkstyle-plugin
>     Versions: 2.0
>  Environment: Solaris 8, JDK 1.4.2_03, checkstyle plugin 2.0-beta1
>     Reporter: Cyrill Ruettimann

>
>
> While generating the checkstyle report, maven exits with an out of memory exception. This happened on a project with many classes (around 300) with many style breaches.
> Probably you can pass the heap configuration to the vm executing the checkstyle report as the javadoc-plugin:
> <configuration>
>           <minmemory>128m</minmemory>
>           <maxmemory>512m</maxmemory>
> </configuration>

-- 
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: (MNG-1599) OutOfMemoryException occured while generating the report

Posted by "Cyrill Ruettimann (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1599?page=comments#action_52396 ] 

Cyrill Ruettimann commented on MNG-1599:
----------------------------------------

Yes, I have not looked into the javadoc plug-In so far (Firewall-Issues here), but only with a forked VM instance you can adjust those settings.

> OutOfMemoryException occured while generating the report
> --------------------------------------------------------
>
>          Key: MNG-1599
>          URL: http://jira.codehaus.org/browse/MNG-1599
>      Project: Maven 2
>         Type: Bug
>   Components: maven-checkstyle-plugin
>     Versions: 2.0
>  Environment: Solaris 8, JDK 1.4.2_03, checkstyle plugin 2.0-beta1
>     Reporter: Cyrill Ruettimann

>
>
> While generating the checkstyle report, maven exits with an out of memory exception. This happened on a project with many classes (around 300) with many style breaches.
> Probably you can pass the heap configuration to the vm executing the checkstyle report as the javadoc-plugin:
> <configuration>
>           <minmemory>128m</minmemory>
>           <maxmemory>512m</maxmemory>
> </configuration>

-- 
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