|
|
Subject: [jira] Updated: (MOJO-212) Maven 2 Spring BeanDoc plugin & site report (simple wrapper) - msg#00268
List: java.maven-plugins.mojo.devel
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
[jira] Commented: (MOJO-212) Maven 2 Spring BeanDoc plugin & site report (simple wrapper)
[ http://jira.codehaus.org/browse/MOJO-212?page=comments#action_83231 ]
Jurgen De Landsheer commented on MOJO-212:
------------------------------------------
I checked it and changed to the latest versions, follow the INSTALL.txt
instructions included in the latest upload, it should work now
> Maven 2 Spring BeanDoc plugin & site report (simple wrapper)
> ------------------------------------------------------------
>
> Key: MOJO-212
> URL: http://jira.codehaus.org/browse/MOJO-212
> Project: Mojo
> Issue Type: New Feature
> Components: Plugin Submission
> Reporter: Jurgen De Landsheer
> Attachments: maven2-spring-beans-plugin.zip,
> maven2-spring-beans-plugin.zip, maven2-spring-beans-plugin.zip
>
>
> new plugin: creates report from spring xml bean configurations
> for examples see http://springframework.sourceforge.net/beandoc/
--
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 from this list please visit:
http://xircles.codehaus.org/manage_email
Next Message by Date:
click to view message preview
[jira] Closed: (MJNCSS-8) NullPointerException when report are generated on ... Windows
[ http://jira.codehaus.org/browse/MJNCSS-8?page=all ]
Jean-Laurent de Morlhon closed MJNCSS-8.
----------------------------------------
Resolution: Fixed
AFAIK the latest snapshot fix the problem.
> NullPointerException when report are generated on ... Windows
> -------------------------------------------------------------
>
> Key: MJNCSS-8
> URL: http://jira.codehaus.org/browse/MJNCSS-8
> Project: Maven 2.x JavaNCSS Plugin
> Issue Type: Bug
> Affects Versions: 2.0-beta-2
> Environment: WindowsXP
> Reporter: Jean-Laurent de Morlhon
> Assigned To: Jean-Laurent de Morlhon
> Priority: Blocker
> Fix For: 2.0-beta-2
>
>
> Strange bug occurs on Windows (works fine on MacOSX)...
> If the project which javancss-maven-plugin tries to report is located at the
> root of a drive (z:/) it works fine...
> looks something related to the length of the path ?!?
> NPE is within javancss code... not plugin code.
> Anyhow this must be solved.
>
> Trace of a mvn javancss:report -X on javancss-maven-plugin :
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\AbstractNcssReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\ModuleReport.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssAgregateReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssExecuter.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssReportMojo.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssViolationCheckMojo.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NumericNodeComparator.java
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] An error has occurred in JavaNCSS Report report generation.
> [INFO]
> ------------------------------------------------------------------------
> [DEBUG] Trace
> org.apache.maven.lifecycle.LifecycleExecutionException: An error has occurred
> in JavaNCSS Report report generation.
> at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:559)
> .../...
> Caused by: java.lang.NullPointerException
> at java.io.File.<init>(File.java:194)
> at javancss.Javancss.<init>(Javancss.java:553)
> at
> org.codehaus.mojo.javancss.NcssExecuter.execute(NcssExecuter.java:79)
--
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 from this list please visit:
http://xircles.codehaus.org/manage_email
Previous Message by Thread:
click to view message preview
[jira] Created: (MOJO-599) Deploy from artifact instead of artifactPath
Deploy from artifact instead of artifactPath
--------------------------------------------
Key: MOJO-599
URL: http://jira.codehaus.org/browse/MOJO-599
Project: Mojo
Issue Type: Improvement
Components: weblogic
Reporter: Willie Vu
The deploy mojo currently deploys either the artifact built by the current
project, or the artifact explicitly specified by artifactPath.
A common use case is to deploy an artifact from repositories. I propose to add
a configuration called artifact as the following:
-------------------
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>weblogic-maven-plugin</artifactId>
<version>2.9.0-SNAPSHOT</version>
<configuration>
<artifact>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
<type>...</type>
<classifier>...</classifier>
</artifact>
</configuration>
</plugin>
-------------------
Then, the artifact is resolved using the following code:
Artifact artifact = artifactFactory.createArtifactWithClassifier(groupId,
artifactId, version, type, classifier);
resolver.resolve(artifact, remoteRepositories, localRepository);
--
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 from this list please visit:
http://xircles.codehaus.org/manage_email
Next Message by Thread:
click to view message preview
[jira] Closed: (MJNCSS-8) NullPointerException when report are generated on ... Windows
[ http://jira.codehaus.org/browse/MJNCSS-8?page=all ]
Jean-Laurent de Morlhon closed MJNCSS-8.
----------------------------------------
Resolution: Fixed
AFAIK the latest snapshot fix the problem.
> NullPointerException when report are generated on ... Windows
> -------------------------------------------------------------
>
> Key: MJNCSS-8
> URL: http://jira.codehaus.org/browse/MJNCSS-8
> Project: Maven 2.x JavaNCSS Plugin
> Issue Type: Bug
> Affects Versions: 2.0-beta-2
> Environment: WindowsXP
> Reporter: Jean-Laurent de Morlhon
> Assigned To: Jean-Laurent de Morlhon
> Priority: Blocker
> Fix For: 2.0-beta-2
>
>
> Strange bug occurs on Windows (works fine on MacOSX)...
> If the project which javancss-maven-plugin tries to report is located at the
> root of a drive (z:/) it works fine...
> looks something related to the length of the path ?!?
> NPE is within javancss code... not plugin code.
> Anyhow this must be solved.
>
> Trace of a mvn javancss:report -X on javancss-maven-plugin :
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\AbstractNcssReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\ModuleReport.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssAgregateReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssExecuter.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssReportGenerator.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssReportMojo.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NcssViolationCheckMojo.java
> [DEBUG] Including for parsing :
> C:\src\javancss-maven-plugin\src\main\java\org\codehaus\mojo\javancss\NumericNodeComparator.java
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] An error has occurred in JavaNCSS Report report generation.
> [INFO]
> ------------------------------------------------------------------------
> [DEBUG] Trace
> org.apache.maven.lifecycle.LifecycleExecutionException: An error has occurred
> in JavaNCSS Report report generation.
> at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:559)
> .../...
> Caused by: java.lang.NullPointerException
> at java.io.File.<init>(File.java:194)
> at javancss.Javancss.<init>(Javancss.java:553)
> at
> org.codehaus.mojo.javancss.NcssExecuter.execute(NcssExecuter.java:79)
--
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 from this list please visit:
http://xircles.codehaus.org/manage_email
|
|