doodleproject-developers Mailing List for DoodleProject
Brought to you by:
brentworden
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(3) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(6) |
Dec
|
| 2008 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|
From: Phil L. <phi...@pc...> - 2013-12-08 19:06:33
|
Hi, Is the doxygen-maven-plugin still maintained? I'm interested in updating to add more config options and to fix a bug I found (doesn't like spaces in path to generated config file), and want to know if I should fork or not. Phil |
|
From: SourceForge.net <no...@so...> - 2010-05-26 09:55:53
|
Bugs item #3007266, was opened at 2010-05-26 09:55 Message generated for change (Tracker Item Submitted) made by martinshaw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=3007266&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: 2.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Martin Shaw (martinshaw) Assigned to: Brent Worden (brentworden) Summary: Maven repository not accessible Initial Comment: The maven repository is not accessible - probably due to directory indexes being disabled: 1. Server: doodleproject.sourceforge.net 2. URL path: /maven2/release/ 3. Error notes: NONE 4. Error type: 403 5. Request method: GET 6. Request query string: NONE 7. Time: 2010-05-26 09:48:00 UTC (1274867280) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=3007266&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2010-01-20 00:39:05
|
Support Requests item #2935341, was opened at 2010-01-19 19:39 Message generated for change (Tracker Item Submitted) made by ronak2121 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2935341&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Ronak Patel (ronak2121) Assigned to: Brent Worden (brentworden) Summary: mysterious xxx.html file Initial Comment: Hi, I'm a relatively new user of your Maven DOxygen plugin and I've noticed something weird. I have a Maven multi-module project and I run the site:deploy Maven goal to generate my site documentation, along with all reports (JavaDoc and DOxygen). The weird thing I'm seeing is that the DOxygen plugin is creating and linking a xxx.html file for every single module (regardless of whether it has a DOxyfile defined in the pom or not). I was curious to see where this xxx.html file is coming from...and whether it is a bug that can be fixed. Thanks for your help and many thanks for developing this plugin! Ronak Patel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2935341&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2009-08-03 10:07:55
|
Support Requests item #2831392, was opened at 2009-08-03 10:07 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2831392&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: dotnet-maven-plugin Group: 2.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: 'csc' is not recognized as an internal or external command Initial Comment: 'csc' is not recognized as an internal or external command. I am using maven "2.0.9" I created a maven project with following project structure netproject |__src |__main |__csharp |__Hello.cs |__pom.xml my pom.xml is below --------------------------------- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>csharp</groupId> <artifactId>csprog</artifactId> <packaging>dll</packaging> <version>1.0-SNAPSHOT</version> <name>.NET C# program</name> <build> <sourceDirectory>src/main/csharp</sourceDirectory> <plugins> <plugin> <groupId>net.sf.doodleproject</groupId> <artifactId>dotnet-maven-plugin</artifactId> <version>2.1</version> <extensions>true</extensions> <configuration> <compilerArguments> <type>library</type> </compilerArguments> <fork>true</fork> <compilerId>csc</compilerId> <includes> <include>**/*.cs</include> </includes> </configuration> <goals> <goal>dotnet:compile</goal> </goals> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>doodleproject-repo</id> <name>DoodleProject Maven 2 Repository</name> <url>http://doodleproject.sourceforge.net/maven2/release</url> <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> </project> Please suggest ,what I did wrong? I attached file related to build failed i.e. report.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2831392&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2009-07-04 15:21:23
|
Support Requests item #2816630, was opened at 2009-07-04 15:21 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2816630&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: dotnet-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: How does it handle dependencies? Initial Comment: Hi! Does is handle dependencies to other .NET dlls? I mean, I know Maven is able to resolve dependencies for other java packages, but will it be able to resolve dependencies for other DLL files? Also, how does it handle groupId, artifactId and version? Versioning system from microsoft is different from Maven. Dlls usually have a name, but it might have no relation to the Maven required fields. I check this out to see how it works. I'm fan of Maven systems, I would love to see it working for MS stuffs... Regards, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518271&aid=2816630&group_id=67565 |
|
From: Scott R. <sc...@th...> - 2008-09-10 16:19:54
|
I have successfully integrated the doxygen plugin into my maven 2 project
and can run the report command to generate diagrams and reports for my
project. When I run the mvn site command the doxygen files are empty. Is
there something special I need to do to get mvn site to run the doxygen
plugin and integrate the results into my maven site documentation. Here is
my configuration:
<reporting>
<plugins>
<plugin>
<groupId>net.sf.doodleproject</groupId>
<artifactId>doxygen-maven-plugin</artifactId>
<configuration>
<executable>C:\OpenSource\doxygen\bin\doxygen.exe</executable>
<alphabeticalIndex>true</alphabeticalIndex>
<generateHtml>true</generateHtml>
<input>${basedir}/src/main/java</input>
<filePatterns>*.java</filePatterns>
<recursive>true</recursive>
</configuration>
</plugin>
</plugins>
</reporting>
and i just run mvn site
Scott Ryan
President/CTO
Soaring Eagle L.L.C.
Highlands Ranch, Co. 80129
(303) 263-3044
sc...@th...
www.soaringeagleco.com
|
|
From: SourceForge.net <no...@so...> - 2008-05-05 18:11:50
|
Feature Requests item #1909236, was opened at 2008-03-06 18:17 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: add support for the @include directive Initial Comment: this makes it really easy to add additional configuration options without needing the plugin to support every doxygen option ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-05-05 11:11 Message: Logged In: NO Here's a patch --- orig/doxygen-maven-plugin-2.1/src/main/java/net/sf/doodleproject/mavenite/doxygen/DoxygenReport.java 2007-11-23 08:46:11.000000000 -0800 +++ doxygen-maven-plugin-2.1/src/main/java/net/sf/doodleproject/mavenite/doxygen/DoxygenReport.java 2008-05-05 11:06:49.000000000 -0700 @@ -146,4 +146,9 @@ * @parameter */ + private File includeFile; + + /** + * @parameter + */ private File configurationFile; @@ -259,4 +264,5 @@ try { out = new PrintWriter(new BufferedWriter(new FileWriter(config))); + addConfiguration(out, includeFile != null, "@INCLUDE", includeFile); addConfiguration(out, "ALPHABETICAL_INDEX", alphabeticalIndex); addConfiguration(out, 1 <= columnsInAlphabeticalIndex ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-05-02 20:18:22
|
Patches item #1956421, was opened at 2008-05-02 13:18 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518272&aid=1956421&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: dotnet-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Unable to create exe Files Initial Comment: I made two modification to the CSharpCompiler.java file in order to be able to create exe files. The modification are indicated with the following line at the source code: "**** Modified in order to be able to create exe files" One problem was that the getType function was looking for the compiler argument "type" but it should be "-type". The other problem was that in order to pass the "/Target" parameter to the CSC compiler the code was looking for the parameter "target" instead of "type". ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518272&aid=1956421&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-04-24 10:09:17
|
Bugs item #1841342, was opened at 2007-11-30 00:58 Message generated for change (Comment added) made by dreuxl You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841342&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nicholas T. Daley (ntdaley) Assigned to: Brent Worden (brentworden) Summary: Generated report menu only uses empty 'xxx.html' file Initial Comment: Because DoxygenReport#getOutputName() always returns "apidocs/xxx", the 'Doxygen' in the 'Generated Reports' page of the site created by 'mvn site' always points to a 'xxx.html' file, which is not where the report got saved. Either the plugin should determine where the report was saved based on the doxygen configuration, or the value returned by getOutputName() should be configurable. ---------------------------------------------------------------------- Comment By: dreuxl (dreuxl) Date: 2008-04-24 11:54 Message: Logged In: YES user_id=1251960 Originator: NO Same bug here ! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841342&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-03-10 23:13:13
|
Feature Requests item #1911512, was opened at 2008-03-10 16:12 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1911512&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: add support for the @include directive Initial Comment: this makes it really easy to add additional configuration options without needing the plugin to support every doxygen option ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2008-03-10 16:13 Message: Logged In: NO sorry - accidentally submitted twice. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1911512&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-03-10 23:12:27
|
Feature Requests item #1911512, was opened at 2008-03-10 16:12 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1911512&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: add support for the @include directive Initial Comment: this makes it really easy to add additional configuration options without needing the plugin to support every doxygen option ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1911512&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-03-07 02:17:42
|
Feature Requests item #1909236, was opened at 2008-03-06 18:17 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: add support for the @include directive Initial Comment: this makes it really easy to add additional configuration options without needing the plugin to support every doxygen option ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1909236&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2008-02-26 19:37:57
|
Feature Requests item #1902454, was opened at 2008-02-26 11:37 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1902454&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: 2.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Create project environment variables Initial Comment: It would be very useful if the project name and version from the Maven pom.xml were made available to doxygen as environment variables. Then, when running doxygen with a configuration file, the project name and number could be set with entries such as: PROJECT_NAME = $(MVN_PROJECT_NAME) and PROJECT_NUMBER = $(MVN_PROJECT_NUMBER) This would have two benefits: there would be no need to update the doxygen configuration file after making a release; and the configuration file would be portable from one project to another. Regards, Andrew Thomson. thomsonal at yahoo dot com ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518273&aid=1902454&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-29 23:58:08
|
Bugs item #1841342, was opened at 2007-11-30 12:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841342&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nicholas T. Daley (ntdaley) Assigned to: Brent Worden (brentworden) Summary: Generated report menu only uses empty 'xxx.html' file Initial Comment: Because DoxygenReport#getOutputName() always returns "apidocs/xxx", the 'Doxygen' in the 'Generated Reports' page of the site created by 'mvn site' always points to a 'xxx.html' file, which is not where the report got saved. Either the plugin should determine where the report was saved based on the doxygen configuration, or the value returned by getOutputName() should be configurable. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841342&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-29 20:17:18
|
Bugs item #1841213, was opened at 2007-11-30 09:17 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841213&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nicholas T. Daley (ntdaley) Assigned to: Brent Worden (brentworden) Summary: Page titles on doxygen plugin site say '.NET Maven Plugin' Initial Comment: The title of the doxygen-maven-plugin web pages say '.NET Maven Plugin - Doxygen Maven Plugin'. I assume the .NET part is an error. http://doodleproject.sourceforge.net/mavenite/doxygen-maven-plugin/ ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1841213&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-23 17:12:39
|
Bugs item #1732784, was opened at 2007-06-07 08:53 Message generated for change (Settings changed) made by brentworden You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Deleted >Resolution: Wont Fix Priority: 1 >Private: Yes Submitted By: danielinteract (danielinteract) Assigned to: Brent Worden (brentworden) Summary: delete statements in partition begin Initial Comment: Hi, first of all I would like to thank the team for their combinatorics algorithms! However, I stumbled accross delete p; delete s; in the begin member function of the partition class. Since p and s haven't been allocated before, a memory error occurred. Removing the two lines solved the issue. best, Daniel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-23 17:12:12
|
Bugs item #1732784, was opened at 2007-06-07 08:53 Message generated for change (Settings changed) made by brentworden You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted Resolution: None >Priority: 1 Private: No Submitted By: danielinteract (danielinteract) Assigned to: Brent Worden (brentworden) Summary: delete statements in partition begin Initial Comment: Hi, first of all I would like to thank the team for their combinatorics algorithms! However, I stumbled accross delete p; delete s; in the begin member function of the partition class. Since p and s haven't been allocated before, a memory error occurred. Removing the two lines solved the issue. best, Daniel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-23 17:05:22
|
Bugs item #1626115, was opened at 2007-01-02 05:23 Message generated for change (Comment added) made by brentworden You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Unable to find the report mojo Initial Comment: Hello, When I use the 'mvn net.sf.doodleproject:doxygen-maven-plugin:report' command line to generate the Doxygen report I get the following error message : [INFO] ----------------------------------------------------------------------- [ERROR] BUILD ERROR [INFO] ----------------------------------------------------------------------- [INFO] Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' net.sf.doodleproject.mavenite.doxygen.DoxygenReport Is there any problem with the plugin mojo implementation? Thanks. Olivier. ---------------------------------------------------------------------- >Comment By: Brent Worden (brentworden) Date: 2007-11-23 11:05 Message: Logged In: YES user_id=448851 Originator: NO Fixed in release 2.1. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-06-24 18:19 Message: Logged In: YES user_id=853820 Originator: NO My guess on why this is happening, is that it is a failed dependency on org.codehaus.doxia.site.renderer.SiteRenderer, which was ditched around version 2.0.1 of maven. Because maven builds are using other builds that depend on newer versions of doxia/reporting/maven/etc. maven uses the newer version, which doesn't include org.codehaus.doxia.site.renderer.SiteRenderer. Here's a couple of links to mailing lists where people had similar problems. http://www.mail-archive.com/us...@ma.../msg33503.html http://mail-archives.apache.org/mod_mbox/maven-dev/200512.mbox/%3C1...@co...%3E I guess the solution would be to update DoxygenReport to use a newer version of maven-reporting-impl. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-06-24 16:08 Message: Logged In: YES user_id=853820 Originator: NO I'm seeing it too. When I run maven with -e, I get: [INFO] Trace org.apache.maven.lifecycle.LifecycleExecutionException: Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:694) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:642) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:517) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:272) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.PluginManagerException: Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:571) at org.apache.maven.plugin.DefaultPluginManager.getReport(DefaultPluginManager.java:495) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:683) ... 18 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.plugin.Mojonet.sf.doodleproject:doxygen-maven-plugin:2.0:report', it could not be created at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:335) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:440) at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:562) ... 20 more Caused by: org.codehaus.plexus.component.factory.ComponentInstantiationException: Could not instanciate component: role: 'null', implementation: 'net.sf.doodleproject.mavenite.doxygen.DoxygenReport' at org.codehaus.plexus.component.factory.java.JavaComponentFactory.makeException(JavaComponentFactory.java:77) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:54) at org.codehaus.plexus.DefaultPlexusContainer.createComponentInstance(DefaultPlexusContainer.java:1464) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:93) at org.codehaus.plexus.component.manager.PerLookupComponentManager.getComponent(PerLookupComponentManager.java:48) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:331) ... 22 more Caused by: java.lang.ClassNotFoundException: net.sf.doodleproject.mavenite.doxygen.DoxygenReport at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:274) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:30) ... 26 more >From what I can tell, it should be able to see the net.sf.doodleproject.mavenite.doxygen.DoxygenReport class. Could DoxygenReport have a dependency that isn't in the classpath? Could DoxygenReport have a dependency that hasn't been added to its pom? I'm running maven version 2.0.6. ---------------------------------------------------------------------- Comment By: John Ferguson Smart (jfsmart) Date: 2007-05-14 18:53 Message: Logged In: YES user_id=617641 Originator: NO Yes, I'm getting this problem too. Any solution in view? John Smart. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-11-22 04:42:12
|
Bugs item #1641984, was opened at 2007-01-22 16:27 Message generated for change (Comment added) made by brentworden You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1641984&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: batik-maven-plugin >Group: 2.0 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Nicholas T. Daley (ntdaley) Assigned to: Brent Worden (brentworden) Summary: No maven-metadata.xml files in your maven repository. Initial Comment: Without the maven-metadata.xml files in the maven reppository, maven doesn't know what the latest version is (and so what version it should use). A version can be specified in the pom.xml file for any project using the batik-maven-plugin, but this isn't shown in the examples on the web page. If you don't add the metadata files, then you should change the examples on the webpage to specify the plugin version. ---------------------------------------------------------------------- >Comment By: Brent Worden (brentworden) Date: 2007-11-21 22:42 Message: Logged In: YES user_id=448851 Originator: NO redeployed plugins to repository. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-01-22 16:30 Message: Logged In: YES user_id=853820 Originator: YES It looks like it's also missing the pom file for batik-maven-plugin. Looking around your maven2 repository, it looks like just this one project that is missing metadata and pom files. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1641984&group_id=67565 |
|
From: Tacio S. <tac...@gm...> - 2007-10-01 07:41:48
|
Hi, I'm new to maven2 and trying to find how to use it with doxygen I came across doxygen-maven-plugin. I've followed the howto at http://doodleproject.sourceforge.net/mavenite/doxygen-maven-plugin/referenc= e/howto.html but I'm getting the problem below. Could someone tell me what I might be doing wrong ? Thanks in advance, T=E1cio me@home:$ mvn net.sf.doodleproject:doxygen-maven-plugin:report -e + Error stacktraces are turned on. [INFO] Scanning for projects... [INFO] --------------------------------------------------------------------= ---- [ERROR] BUILD ERROR [INFO] --------------------------------------------------------------------= ---- [INFO] The plugin 'net.sf.doodleproject:doxygen-maven-plugin' does not exist or no valid version could be found [INFO] --------------------------------------------------------------------= ---- [INFO] Trace org.apache.maven.lifecycle.LifecycleExecutionException: The plugin 'net.sf.doodleproject:doxygen-maven-plugin' does not exist or no valid version could be found at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin= (DefaultLifecycleExecutor.java:1286) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getMojoDescr= iptor(DefaultLifecycleExecutor.java:1522) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.segmentTaskL= istByAggregationNeeds(DefaultLifecycleExecutor.java:386) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(Defa= ultLifecycleExecutor.java:138) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:280) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessor= Impl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethod= AccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:3= 15) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java= :430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.version.PluginVersionNotFoundException: The plugin 'net.sf.doodleproject:doxygen-maven-plugin' does not exist or no valid version could be found at org.apache.maven.plugin.version.DefaultPluginVersionManager.reso= lvePluginVersion(DefaultPluginVersionManager.java:228) at org.apache.maven.plugin.version.DefaultPluginVersionManager.reso= lvePluginVersion(DefaultPluginVersionManager.java:90) at org.apache.maven.plugin.DefaultPluginManager.verifyPlugin(Defaul= tPluginManager.java:166) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin= (DefaultLifecycleExecutor.java:1257) ... 14 more [INFO] --------------------------------------------------------------------= ---- [INFO] Total time: < 1 second [INFO] Finished at: Mon Oct 01 09:33:33 CEST 2007 [INFO] Final Memory: 2M/38M [INFO] --------------------------------------------------------------------= ---- |
|
From: SourceForge.net <no...@so...> - 2007-06-24 23:19:41
|
Bugs item #1626115, was opened at 2007-01-03 00:23 Message generated for change (Comment added) made by ntdaley You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Unable to find the report mojo Initial Comment: Hello, When I use the 'mvn net.sf.doodleproject:doxygen-maven-plugin:report' command line to generate the Doxygen report I get the following error message : [INFO] ----------------------------------------------------------------------- [ERROR] BUILD ERROR [INFO] ----------------------------------------------------------------------- [INFO] Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' net.sf.doodleproject.mavenite.doxygen.DoxygenReport Is there any problem with the plugin mojo implementation? Thanks. Olivier. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-06-25 11:19 Message: Logged In: YES user_id=853820 Originator: NO My guess on why this is happening, is that it is a failed dependency on org.codehaus.doxia.site.renderer.SiteRenderer, which was ditched around version 2.0.1 of maven. Because maven builds are using other builds that depend on newer versions of doxia/reporting/maven/etc. maven uses the newer version, which doesn't include org.codehaus.doxia.site.renderer.SiteRenderer. Here's a couple of links to mailing lists where people had similar problems. http://www.mail-archive.com/us...@ma.../msg33503.html http://mail-archives.apache.org/mod_mbox/maven-dev/200512.mbox/%3C1...@co...%3E I guess the solution would be to update DoxygenReport to use a newer version of maven-reporting-impl. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-06-25 09:08 Message: Logged In: YES user_id=853820 Originator: NO I'm seeing it too. When I run maven with -e, I get: [INFO] Trace org.apache.maven.lifecycle.LifecycleExecutionException: Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:694) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:642) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:517) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:272) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.PluginManagerException: Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:571) at org.apache.maven.plugin.DefaultPluginManager.getReport(DefaultPluginManager.java:495) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:683) ... 18 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.plugin.Mojonet.sf.doodleproject:doxygen-maven-plugin:2.0:report', it could not be created at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:335) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:440) at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:562) ... 20 more Caused by: org.codehaus.plexus.component.factory.ComponentInstantiationException: Could not instanciate component: role: 'null', implementation: 'net.sf.doodleproject.mavenite.doxygen.DoxygenReport' at org.codehaus.plexus.component.factory.java.JavaComponentFactory.makeException(JavaComponentFactory.java:77) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:54) at org.codehaus.plexus.DefaultPlexusContainer.createComponentInstance(DefaultPlexusContainer.java:1464) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:93) at org.codehaus.plexus.component.manager.PerLookupComponentManager.getComponent(PerLookupComponentManager.java:48) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:331) ... 22 more Caused by: java.lang.ClassNotFoundException: net.sf.doodleproject.mavenite.doxygen.DoxygenReport at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:274) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:30) ... 26 more >From what I can tell, it should be able to see the net.sf.doodleproject.mavenite.doxygen.DoxygenReport class. Could DoxygenReport have a dependency that isn't in the classpath? Could DoxygenReport have a dependency that hasn't been added to its pom? I'm running maven version 2.0.6. ---------------------------------------------------------------------- Comment By: John Ferguson Smart (jfsmart) Date: 2007-05-15 11:53 Message: Logged In: YES user_id=617641 Originator: NO Yes, I'm getting this problem too. Any solution in view? John Smart. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-06-24 21:08:23
|
Bugs item #1626115, was opened at 2007-01-03 00:23 Message generated for change (Comment added) made by ntdaley You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Unable to find the report mojo Initial Comment: Hello, When I use the 'mvn net.sf.doodleproject:doxygen-maven-plugin:report' command line to generate the Doxygen report I get the following error message : [INFO] ----------------------------------------------------------------------- [ERROR] BUILD ERROR [INFO] ----------------------------------------------------------------------- [INFO] Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' net.sf.doodleproject.mavenite.doxygen.DoxygenReport Is there any problem with the plugin mojo implementation? Thanks. Olivier. ---------------------------------------------------------------------- Comment By: Nicholas T. Daley (ntdaley) Date: 2007-06-25 09:08 Message: Logged In: YES user_id=853820 Originator: NO I'm seeing it too. When I run maven with -e, I get: [INFO] Trace org.apache.maven.lifecycle.LifecycleExecutionException: Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:694) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:642) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:517) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125) at org.apache.maven.cli.MavenCli.main(MavenCli.java:272) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Caused by: org.apache.maven.plugin.PluginManagerException: Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:571) at org.apache.maven.plugin.DefaultPluginManager.getReport(DefaultPluginManager.java:495) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(DefaultLifecycleExecutor.java:683) ... 18 more Caused by: org.codehaus.plexus.component.repository.exception.ComponentLookupException: Unable to lookup component 'org.apache.maven.plugin.Mojonet.sf.doodleproject:doxygen-maven-plugin:2.0:report', it could not be created at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:335) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:440) at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPluginManager.java:562) ... 20 more Caused by: org.codehaus.plexus.component.factory.ComponentInstantiationException: Could not instanciate component: role: 'null', implementation: 'net.sf.doodleproject.mavenite.doxygen.DoxygenReport' at org.codehaus.plexus.component.factory.java.JavaComponentFactory.makeException(JavaComponentFactory.java:77) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:54) at org.codehaus.plexus.DefaultPlexusContainer.createComponentInstance(DefaultPlexusContainer.java:1464) at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:93) at org.codehaus.plexus.component.manager.PerLookupComponentManager.getComponent(PerLookupComponentManager.java:48) at org.codehaus.plexus.DefaultPlexusContainer.lookup(DefaultPlexusContainer.java:331) ... 22 more Caused by: java.lang.ClassNotFoundException: net.sf.doodleproject.mavenite.doxygen.DoxygenReport at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at org.codehaus.classworlds.RealmClassLoader.loadClassDirect(RealmClassLoader.java:195) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:255) at org.codehaus.classworlds.DefaultClassRealm.loadClass(DefaultClassRealm.java:274) at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:30) ... 26 more >From what I can tell, it should be able to see the net.sf.doodleproject.mavenite.doxygen.DoxygenReport class. Could DoxygenReport have a dependency that isn't in the classpath? Could DoxygenReport have a dependency that hasn't been added to its pom? I'm running maven version 2.0.6. ---------------------------------------------------------------------- Comment By: John Ferguson Smart (jfsmart) Date: 2007-05-15 11:53 Message: Logged In: YES user_id=617641 Originator: NO Yes, I'm getting this problem too. Any solution in view? John Smart. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-06-07 13:53:53
|
Bugs item #1732784, was opened at 2007-06-07 15:53 Message generated for change (Settings changed) made by danielinteract You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: danielinteract (danielinteract) >Assigned to: Brent Worden (brentworden) Summary: delete statements in partition begin Initial Comment: Hi, first of all I would like to thank the team for their combinatorics algorithms! However, I stumbled accross delete p; delete s; in the begin member function of the partition class. Since p and s haven't been allocated before, a memory error occurred. Removing the two lines solved the issue. best, Daniel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-06-07 13:53:11
|
Bugs item #1732784, was opened at 2007-06-07 15:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: danielinteract (danielinteract) Assigned to: Nobody/Anonymous (nobody) Summary: delete statements in partition begin Initial Comment: Hi, first of all I would like to thank the team for their combinatorics algorithms! However, I stumbled accross delete p; delete s; in the begin member function of the partition class. Since p and s haven't been allocated before, a memory error occurred. Removing the two lines solved the issue. best, Daniel ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1732784&group_id=67565 |
|
From: SourceForge.net <no...@so...> - 2007-05-14 23:53:12
|
Bugs item #1626115, was opened at 2007-01-02 11:23 Message generated for change (Comment added) made by jfsmart You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: doxygen-maven-plugin Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Brent Worden (brentworden) Summary: Unable to find the report mojo Initial Comment: Hello, When I use the 'mvn net.sf.doodleproject:doxygen-maven-plugin:report' command line to generate the Doxygen report I get the following error message : [INFO] ----------------------------------------------------------------------- [ERROR] BUILD ERROR [INFO] ----------------------------------------------------------------------- [INFO] Error getting reports from the plugin 'net.sf.doodleproject:doxygen-maven-plugin': Unable to find the mojo 'net.sf.doodleproject:doxygen-maven-plugin:2.0:report' in the plugin 'net.sf.doodleproject:doxygen-maven-plugin' net.sf.doodleproject.mavenite.doxygen.DoxygenReport Is there any problem with the plugin mojo implementation? Thanks. Olivier. ---------------------------------------------------------------------- Comment By: John Ferguson Smart (jfsmart) Date: 2007-05-14 23:53 Message: Logged In: YES user_id=617641 Originator: NO Yes, I'm getting this problem too. Any solution in view? John Smart. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=518270&aid=1626115&group_id=67565 |