You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Mick Knutson <mi...@gmail.com> on 2006/09/19 23:38:21 UTC

error with doccheck still

Does anyone else have doccheck running?

            <plugin>
                <groupId>doccheck</groupId>
                <artifactId>maven-doccheck-plugin</artifactId>
                <version>1.4-0.1</version>
            </plugin>






[INFO] Velocimacro : error using  VM library template VM_global_library.vm :
org.apache.velocity.exception.ResourceNotFoundException: Unable to find
esource 'VM_global_library.vm'
[INFO] Velocimacro :  VM library template macro registration complete.
[INFO] Velocimacro : allowInline = true : VMs can be defined inline in
templates
[INFO] Velocimacro : allowInlineToOverride = false : VMs defined inline may
NOT replace previous VM definitions
[INFO] Velocimacro : allowInlineLocal = false : VMs defined inline will be
global in scope if allowed.
[INFO] Velocimacro : initialization complete.
[INFO] Velocity successfully started.
[INFO]
------------------------------------------------------------------------
[ERROR] FATAL ERROR
[INFO]
------------------------------------------------------------------------
[INFO] null
[INFO]
------------------------------------------------------------------------
[INFO] Trace
java.lang.NullPointerException
        at org.apache.maven.plugin.DefaultPluginManager.addPlugin(
DefaultPluginManager.java:292)
        at
org.apache.maven.plugin.DefaultPluginManager.verifyVersionedPlugin(
DefaultPluginManager.java:198)
        at org.apache.maven.plugin.DefaultPluginManager.verifyReportPlugin(
DefaultPluginManager.java:487)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyReportPlugin(
DefaultLifecycleExecutor.java:1292)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(
DefaultLifecycleExecutor.java:657)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(
DefaultLifecycleExecutor.java:637)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
DefaultLifecycleExecutor.java:512)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle
(DefaultLifecycleExecutor.java:475)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(
DefaultLifecycleExecutor.java:454)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
(DefaultLifecycleExecutor.java:306)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:273)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(
DefaultLifecycleExecutor.java:140)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
        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)
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Tue Sep 19 14:37:02 PDT 2006
[INFO] Final Memory: 14M/26M
[INFO]
------------------------------------------------------------------------




-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

On 9/21/06, Mick Knutson <mi...@gmail.com> wrote:
> I removed the item you stated, but do not understand what I am suppose to do
> for MJAVADOC-81 [1]...???

If you have the SNAPSHOT from the latest SVN, it is all taken care of.

> Is there something else I must compile and run and/install? I just do not
> understand...

You just need to update the pom.xml entry.

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I removed the item you stated, but do not understand what I am suppose to do
for MJAVADOC-81 [1]...???

Is there something else I must compile and run and/install? I just do not
understand...


On 9/20/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> The new fix for MJAVADOC-81 [1] is slightly different than the patch,
> so a slight change is needed.
>
> > ReportSets is not valid:
> > <plugin>
> >                <groupId>org.apache.maven.plugins</groupId>
> >                <artifactId>maven-javadoc-plugin</artifactId>
> >                <version>2.1-SNAPSHOT</version>
> >                <reportSets>
> >                    <reportSet>
> >                        <id>html</id>
> >                        <reports>
> >                            <report>javadoc</report>
> >                        </reports>
> >                    </reportSet>
> >                    <reportSet>
> >                        <id>doccheck</id>
> >                        <configuration>
> >                            <name>DocCheck</name>
> >                            <description>DocCheck
> > documentation</description>
>
> <!-- This is not needed
>                            <outputName>doccheck/index</outputName>
> -->
>
> >                            <doclet>
> com.sun.tools.doclets.doccheck.DocCheck
> > </doclet>
> >                            <docletArtifact>
> >                                <groupId>com.sun.tools.doclets</groupId>
> >                                <artifactId>doccheck</artifactId>
> >                                <version>1.2b2</version>
> >                            </docletArtifact>
>
>                            <destDir>doccheck</destDir>
>
> >                        </configuration>
> >                        <reports>
> >                            <report>javadoc</report>
> >                        </reports>
> >                    </reportSet>
> >                </reportSets>
> >            </plugin>
> >
> >
> > as per:
> > http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
>
> I need to update the site about this.
>
> [1] http://jira.codehaus.org/browse/MJAVADOC-81
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai <sh...@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

The new fix for MJAVADOC-81 [1] is slightly different than the patch,
so a slight change is needed.

> ReportSets is not valid:
> <plugin>
>                <groupId>org.apache.maven.plugins</groupId>
>                <artifactId>maven-javadoc-plugin</artifactId>
>                <version>2.1-SNAPSHOT</version>
>                <reportSets>
>                    <reportSet>
>                        <id>html</id>
>                        <reports>
>                            <report>javadoc</report>
>                        </reports>
>                    </reportSet>
>                    <reportSet>
>                        <id>doccheck</id>
>                        <configuration>
>                            <name>DocCheck</name>
>                            <description>DocCheck
> documentation</description>

<!-- This is not needed
                           <outputName>doccheck/index</outputName>
-->

>                            <doclet>com.sun.tools.doclets.doccheck.DocCheck
> </doclet>
>                            <docletArtifact>
>                                <groupId>com.sun.tools.doclets</groupId>
>                                <artifactId>doccheck</artifactId>
>                                <version>1.2b2</version>
>                            </docletArtifact>

                           <destDir>doccheck</destDir>

>                        </configuration>
>                        <reports>
>                            <report>javadoc</report>
>                        </reports>
>                    </reportSet>
>                </reportSets>
>            </plugin>
>
>
> as per:
> http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x

I need to update the site about this.

[1] http://jira.codehaus.org/browse/MJAVADOC-81

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I already installed the doccheck jar into my repository.


On 9/20/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> > I get this error now when running:
>
> > - Cannot find doclet class com.sun.tools.doclets.doccheck.DocCheck
>
> You need to install the doccheck jar to your m2 repository.  Please
> see here for instructions:
>
>
> http://maven-doccheck.sourceforge.net/install-doccheck.html#Install_into_maven_2_repository
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai <sh...@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> I get this error now when running:

> - Cannot find doclet class com.sun.tools.doclets.doccheck.DocCheck

You need to install the doccheck jar to your m2 repository.  Please
see here for instructions:

http://maven-doccheck.sourceforge.net/install-doccheck.html#Install_into_maven_2_repository

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I installed that jar myself, but get this error:


[INFO] Velocimacro :  VM library template macro registration complete.
[INFO] Velocimacro : allowInline = true : VMs can be defined inline in
templates
[INFO] Velocimacro : allowInlineToOverride = false : VMs defined inline may
NOT replace previous VM definitions
[INFO] Velocimacro : allowInlineLocal = false : VMs defined inline will be
global in scope if allowed.
[INFO] Velocimacro : initialization complete.
[INFO] Velocity successfully started.
[INFO] snapshot
org.apache.maven.plugins:maven-javadoc-plugin:2.1-SNAPSHOT:checking
for updates from mojo_snapshot
[INFO] snapshot
org.apache.maven.plugins:maven-javadoc-plugin:2.1-SNAPSHOT:checking
for updates from
apache.snapshots
[INFO] snapshot
org.apache.maven.plugins:maven-javadoc-plugin:2.1-SNAPSHOT:checking
for updates from
myfaces.staging
[INFO] snapshot
org.apache.maven.plugins:maven-javadoc-plugin:2.1-SNAPSHOT:checking
for updates from ibiblio
Downloading:
http://snapshots.maven.codehaus.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPSHOT.p
om
[WARNING] Unable to get resource from repository mojo_snapshot (
http://snapshots.maven.codehaus.org/maven2)
Downloading:
http://cvs.apache.org/maven-snapshot-repository/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPS
HOT.pom
[WARNING] Unable to get resource from repository apache.snapshots (
http://cvs.apache.org/maven-snapshot-repository)
Downloading:
http://myfaces.zones.apache.org/dist/maven-repository/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1
-SNAPSHOT.pom
[WARNING] Unable to get resource from repository myfaces.staging (
http://myfaces.zones.apache.org/dist/maven-repository)
Downloading:
http://www.ibiblio.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPSHOT.pom
[WARNING] Unable to get resource from repository ibiblio (
http://www.ibiblio.org/maven2)
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

GroupId: org.apache.maven.plugins
ArtifactId: maven-javadoc-plugin
Version: 2.1-SNAPSHOT

Reason: Unable to download the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)


[INFO]
------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Unable to build
project for plugin 'org.apache.maven.plugins:maven-javadoc-plugin': POM '
org.a
pache.maven.plugins:maven-javadoc-plugin' not found in repository: Unable to
download the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)

        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyReportPlugin(
DefaultLifecycleExecutor.java:1309)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(
DefaultLifecycleExecutor.java:657)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.getReports(
DefaultLifecycleExecutor.java:645)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
DefaultLifecycleExecutor.java:512)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle
(DefaultLifecycleExecutor.java:475)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(
DefaultLifecycleExecutor.java:454)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
(DefaultLifecycleExecutor.java:306)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:273)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(
DefaultLifecycleExecutor.java:140)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
        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.InvalidPluginException: Unable to build
project for plugin 'org.apache.maven.plugins:maven-javadoc-plugin': POM 'or
g.apache.maven.plugins:maven-javadoc-plugin' not found in repository: Unable
to download the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)

        at
org.apache.maven.plugin.DefaultPluginManager.checkRequiredMavenVersion(
DefaultPluginManager.java:265)
        at
org.apache.maven.plugin.DefaultPluginManager.verifyVersionedPlugin(
DefaultPluginManager.java:183)
        at org.apache.maven.plugin.DefaultPluginManager.verifyReportPlugin(
DefaultPluginManager.java:487)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyReportPlugin(
DefaultLifecycleExecutor.java:1292)
        ... 19 more
Caused by: org.apache.maven.project.ProjectBuildingException: POM '
org.apache.maven.plugins:maven-javadoc-plugin' not found in repository:
Unable to d
ownload the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)

        at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepository(
DefaultMavenProjectBuilder.java:513)
        at
org.apache.maven.project.DefaultMavenProjectBuilder.buildFromRepository(
DefaultMavenProjectBuilder.java:225)
        at
org.apache.maven.plugin.DefaultPluginManager.checkRequiredMavenVersion(
DefaultPluginManager.java:249)
        ... 22 more
Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException:
Unable to download the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)

        at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(
DefaultArtifactResolver.java:136)
        at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(
DefaultArtifactResolver.java:63)
        at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepository(
DefaultMavenProjectBuilder.java:467)
        ... 24 more
Caused by: org.apache.maven.wagon.ResourceDoesNotExistException: Unable to
download the artifact from any repository
        at org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact
(DefaultWagonManager.java:260)
        at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(
DefaultArtifactResolver.java:124)
        ... 26 more
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 11 seconds
[INFO] Finished at: Thu Sep 21 08:40:26 PDT 2006
[INFO] Final Memory: 14M/25M
[INFO]
------------------------------------------------------------------------

c:\opt\npi>




On 9/20/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> > I have tried to build and install 2.1-snapshot but no luck.....
> > Can someone just put the jar on a snapshot server for the new javadoc
> > plugin?
>
> I think there was a snapshot repository for apache artifacts
> somewhere, but here it is for now:
>
> http://people.apache.org/~shinobu/maven-javadoc-plugin-2.1-SNAPSHOT.jar
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai <sh...@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> I have tried to build and install 2.1-snapshot but no luck.....
> Can someone just put the jar on a snapshot server for the new javadoc
> plugin?

I think there was a snapshot repository for apache artifacts
somewhere, but here it is for now:

http://people.apache.org/~shinobu/maven-javadoc-plugin-2.1-SNAPSHOT.jar

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I have tried to build and install 2.1-snapshot but no luck.....
Can someone just put the jar on a snapshot server for the new javadoc
plugin?




On 9/20/06, Mick Knutson <mi...@gmail.com> wrote:
>
> I get this error now when running:
>
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Error during page generation
>
> Embedded error: Error rendering Maven report: Exit code: 1 - javadoc:
> error - Cannot find doclet class com.sun.tools.doclets.doccheck.DocCheck
>
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Trace
> org.apache.maven.lifecycle.LifecycleExecutionException: Error during page
> generation
>         at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
> DefaultLifecycleExecutor.java:559)
>
>         at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle
> (DefaultLifecycleExecutor.java:475)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal
> (DefaultLifecycleExecutor.java :454)
>         at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
> (DefaultLifecycleExecutor.java:306)
>         at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments (
> DefaultLifecycleExecutor.java:273)
>         at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(
> DefaultLifecycleExecutor.java:140)
>         at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
>         at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
>         at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
>         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.MojoExecutionException: Error during
> page generation
>         at org.apache.maven.plugins.site.SiteMojo.execute (SiteMojo.java
> :97)
>         at org.apache.maven.plugin.DefaultPluginManager.executeMojo(
> DefaultPluginManager.java:412)
>         at
> org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
> DefaultLifecycleExecutor.java :534)
>         ... 16 more
> Caused by: org.apache.maven.doxia.siterenderer.RendererException: Error
> rendering Maven report: Exit code: 1 - javadoc: error - Cannot find doclet
> cla
> ss com.sun.tools.doclets.doccheck.DocCheck
>
>         at
> org.apache.maven.plugins.site.ReportDocumentRenderer.renderDocument(
> ReportDocumentRenderer.java:71)
>         at
> org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.renderModule(
> DefaultSiteRenderer.java :239)
>         at org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.render(
> DefaultSiteRenderer.java:115)
>         at org.apache.maven.plugins.site.SiteMojo.renderLocale(
> SiteMojo.java:124)
>         at org.apache.maven.plugins.site.SiteMojo.execute (SiteMojo.java
> :92)
>         ... 18 more
> Caused by: org.apache.maven.reporting.MavenReportException: Exit code: 1 -
> javadoc: error - Cannot find doclet class com.sun.tools.doclets.doccheck.Do
>
> cCheck
>
>         at org.apache.maven.plugin.javadoc.JavadocReport.executeReport(
> JavadocReport.java:899)
>         at org.apache.maven.plugin.javadoc.JavadocReport.generate(
> JavadocReport.java:595)
>         at
> org.apache.maven.plugins.site.ReportDocumentRenderer.renderDocument(
> ReportDocumentRenderer.java:67)
>         ... 22 more
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 1 minute 3 seconds
> [INFO] Finished at: Wed Sep 20 12:49:37 PDT 2006
> [INFO] Final Memory: 22M/44M
> [INFO]
> ------------------------------------------------------------------------
> Cobertura: Saved information on 26 classes.
>
>
>
>
>
>
>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-javadoc-plugin</artifactId>
>                 <reportSets>
>
>                     <reportSet>
>                         <id>doccheck</id>
>                         <configuration>
>                             <doclet>
> com.sun.tools.doclets.doccheck.DocCheck </doclet>
>                             <docletArtifact>
>                                 <groupId>com.sun.tools.doclets</groupId>
>                                 <artifactId>doccheck</artifactId>
>                                 <version>1.2b2</version>
>                             </docletArtifact>
>                         </configuration>
>                         <reports>
>                             <report>javadoc</report>
>                         </reports>
>                     </reportSet>
>                 </reportSets>
>             </plugin>
>
>         </plugins>
>     </reporting>
>
>
>
>
>
>
> On 9/20/06, Mick Knutson <mickknutson@gmail.com > wrote:
> >
> > ReportSets is not valid:
> > <plugin>
> >                 <groupId> org.apache.maven.plugins</groupId>
> >                 <artifactId>maven-javadoc-plugin</artifactId>
> >                 <version> 2.1-SNAPSHOT</version>
> >                 <reportSets>
> >                     <reportSet>
> >                         <id>html</id>
> >                         <reports>
> >                             <report>javadoc</report>
> >                         </reports>
> >                     </reportSet>
> >                     <reportSet>
> >                         <id>doccheck</id>
> >                         <configuration>
> >                             <name>DocCheck</name>
> >                             <description>DocCheck
> > documentation</description>
> >                             <outputName>doccheck/index</outputName>
> >                             <doclet>
> > com.sun.tools.doclets.doccheck.DocCheck</doclet>
> >                             <docletArtifact>
> >                                 <groupId>com.sun.tools.doclets</groupId>
> >                                 <artifactId>doccheck</artifactId>
> >                                 <version>1.2b2</version>
> >                             </docletArtifact>
> >                             <destDir>${project.build.directory
> > }/site/doccheck</destDir>
> >                         </configuration>
> >                         <reports>
> >                             <report>javadoc</report>
> >                         </reports>
> >                     </reportSet>
> >                 </reportSets>
> >             </plugin>
> >
> >
> > as per:
> >
> > http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
> >
> >
> > On 9/20/06, Mick Knutson <mickknutson@gmail.com > wrote:
> > >
> > > What is this plugin then:
> > > http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
> > >
> > > Is this just the plugin?
> > >
> > >
> > >
> > >
> > >
> > > On 9/19/06, Shinobu Kawai <sh...@gmail.com> wrote:
> > > >
> > > > Hi Mick,
> > > >
> > > > > Does anyone else have doccheck running?
> > > >
> > > > The DocCheck plugin is only for M1.
> > > >
> > > > For usage with M2, please see here:
> > > >
> > > > http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
> > > >
> > > > ## Actually, I need to update the documents based on the actual fix
> > > > for MJAVADOC-81
> > > >
> > > > Best regards,
> > > > -- Shinobu
> > > >
> > > > --
> > > > Shinobu Kawai < shinobu.kawai@gmail.com>
> > > >
> > > > ---------------------------------------------------------------------
> > > >
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > >
> > >
> > > --
> > >
> > > Thanks
> > >
> > > DJ MICK
> > > http://www.djmick.com
> > > http://www.myspace.com/mickknutson
> > >
> >
> >
> >
> > --
> >
> > Thanks
> >
> > DJ MICK
> > http://www.djmick.com
> > http://www.myspace.com/mickknutson
> >
>
>
>
> --
>
> Thanks
>
> DJ MICK
> http://www.djmick.com
> http://www.myspace.com/mickknutson
>



-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I get this error now when running:

[INFO]
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Error during page generation

Embedded error: Error rendering Maven report: Exit code: 1 - javadoc: error
- Cannot find doclet class com.sun.tools.doclets.doccheck.DocCheck

[INFO]
------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Error during page
generation
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
DefaultLifecycleExecutor.java:559)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle
(DefaultLifecycleExecutor.java:475)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(
DefaultLifecycleExecutor.java:454)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures
(DefaultLifecycleExecutor.java:306)
        at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:273)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(
DefaultLifecycleExecutor.java:140)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
        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.MojoExecutionException: Error during page
generation
        at org.apache.maven.plugins.site.SiteMojo.execute(SiteMojo.java:97)
        at org.apache.maven.plugin.DefaultPluginManager.executeMojo(
DefaultPluginManager.java:412)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(
DefaultLifecycleExecutor.java:534)
        ... 16 more
Caused by: org.apache.maven.doxia.siterenderer.RendererException: Error
rendering Maven report: Exit code: 1 - javadoc: error - Cannot find doclet
cla
ss com.sun.tools.doclets.doccheck.DocCheck

        at
org.apache.maven.plugins.site.ReportDocumentRenderer.renderDocument(
ReportDocumentRenderer.java:71)
        at
org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.renderModule(
DefaultSiteRenderer.java:239)
        at org.apache.maven.doxia.siterenderer.DefaultSiteRenderer.render(
DefaultSiteRenderer.java:115)
        at org.apache.maven.plugins.site.SiteMojo.renderLocale(SiteMojo.java
:124)
        at org.apache.maven.plugins.site.SiteMojo.execute(SiteMojo.java:92)
        ... 18 more
Caused by: org.apache.maven.reporting.MavenReportException: Exit code: 1 -
javadoc: error - Cannot find doclet class com.sun.tools.doclets.doccheck.Do
cCheck

        at org.apache.maven.plugin.javadoc.JavadocReport.executeReport(
JavadocReport.java:899)
        at org.apache.maven.plugin.javadoc.JavadocReport.generate(
JavadocReport.java:595)
        at
org.apache.maven.plugins.site.ReportDocumentRenderer.renderDocument(
ReportDocumentRenderer.java:67)
        ... 22 more
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 1 minute 3 seconds
[INFO] Finished at: Wed Sep 20 12:49:37 PDT 2006
[INFO] Final Memory: 22M/44M
[INFO]
------------------------------------------------------------------------
Cobertura: Saved information on 26 classes.






            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <reportSets>
                    <reportSet>
                        <id>doccheck</id>
                        <configuration>
                            <doclet>com.sun.tools.doclets.doccheck.DocCheck
</doclet>
                            <docletArtifact>
                                <groupId>com.sun.tools.doclets</groupId>
                                <artifactId>doccheck</artifactId>
                                <version>1.2b2</version>
                            </docletArtifact>
                        </configuration>
                        <reports>
                            <report>javadoc</report>
                        </reports>
                    </reportSet>
                </reportSets>
            </plugin>

        </plugins>
    </reporting>





On 9/20/06, Mick Knutson <mi...@gmail.com> wrote:
>
> ReportSets is not valid:
> <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-javadoc-plugin</artifactId>
>                 <version> 2.1-SNAPSHOT</version>
>                 <reportSets>
>                     <reportSet>
>                         <id>html</id>
>                         <reports>
>                             <report>javadoc</report>
>                         </reports>
>                     </reportSet>
>                     <reportSet>
>                         <id>doccheck</id>
>                         <configuration>
>                             <name>DocCheck</name>
>                             <description>DocCheck
> documentation</description>
>                             <outputName>doccheck/index</outputName>
>                             <doclet>
> com.sun.tools.doclets.doccheck.DocCheck</doclet>
>                             <docletArtifact>
>                                 <groupId>com.sun.tools.doclets </groupId>
>                                 <artifactId>doccheck</artifactId>
>                                 <version>1.2b2</version>
>                             </docletArtifact>
>                             <destDir>${project.build.directory
> }/site/doccheck</destDir>
>                         </configuration>
>                         <reports>
>                             <report>javadoc</report>
>                         </reports>
>                     </reportSet>
>                 </reportSets>
>             </plugin>
>
>
> as per:
>
> http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
>
>
> On 9/20/06, Mick Knutson <mickknutson@gmail.com > wrote:
> >
> > What is this plugin then:
> > http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
> >
> > Is this just the plugin?
> >
> >
> >
> >
> >
> > On 9/19/06, Shinobu Kawai <sh...@gmail.com> wrote:
> > >
> > > Hi Mick,
> > >
> > > > Does anyone else have doccheck running?
> > >
> > > The DocCheck plugin is only for M1.
> > >
> > > For usage with M2, please see here:
> > >
> > > http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
> > >
> > > ## Actually, I need to update the documents based on the actual fix
> > > for MJAVADOC-81
> > >
> > > Best regards,
> > > -- Shinobu
> > >
> > > --
> > > Shinobu Kawai < shinobu.kawai@gmail.com>
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
> >
> > --
> >
> > Thanks
> >
> > DJ MICK
> > http://www.djmick.com
> > http://www.myspace.com/mickknutson
> >
>
>
>
> --
>
> Thanks
>
> DJ MICK
> http://www.djmick.com
> http://www.myspace.com/mickknutson
>



-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
ReportSets is not valid:
<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.1-SNAPSHOT</version>
                <reportSets>
                    <reportSet>
                        <id>html</id>
                        <reports>
                            <report>javadoc</report>
                        </reports>
                    </reportSet>
                    <reportSet>
                        <id>doccheck</id>
                        <configuration>
                            <name>DocCheck</name>
                            <description>DocCheck
documentation</description>
                            <outputName>doccheck/index</outputName>
                            <doclet>com.sun.tools.doclets.doccheck.DocCheck
</doclet>
                            <docletArtifact>
                                <groupId>com.sun.tools.doclets</groupId>
                                <artifactId>doccheck</artifactId>
                                <version>1.2b2</version>
                            </docletArtifact>
                            <destDir>${project.build.directory
}/site/doccheck</destDir>
                        </configuration>
                        <reports>
                            <report>javadoc</report>
                        </reports>
                    </reportSet>
                </reportSets>
            </plugin>


as per:
http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x


On 9/20/06, Mick Knutson <mi...@gmail.com> wrote:
>
> What is this plugin then:
> http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
>
> Is this just the plugin?
>
>
>
>
>
> On 9/19/06, Shinobu Kawai <sh...@gmail.com> wrote:
> >
> > Hi Mick,
> >
> > > Does anyone else have doccheck running?
> >
> > The DocCheck plugin is only for M1.
> >
> > For usage with M2, please see here:
> > http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
> >
> > ## Actually, I need to update the documents based on the actual fix
> > for MJAVADOC-81
> >
> > Best regards,
> > -- Shinobu
> >
> > --
> > Shinobu Kawai < shinobu.kawai@gmail.com>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
>
> --
>
> Thanks
>
> DJ MICK
> http://www.djmick.com
> http://www.myspace.com/mickknutson
>



-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> Why am I getting files created under ./null/*
>
> file:///C:/opt/npi/common/common-jar/target/site/doccheck/null/com/baselogic/PackageErrors.html

This is a bug in the DocCheck Doclet.  You need to specify the output
directory.  Or, you can apply a patch on the plugin website:

http://maven-doccheck.sourceforge.net/faq.html#m2-no-output

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
Why am I getting files created under ./null/*

file:///C:/opt/npi/common/common-jar/target/site/doccheck/null/com/baselogic/PackageErrors.html





On 9/22/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> > So are you saying I do NOT need this and to remove it from my repository
> and
> > my pom.xml?
>
> Correct.  It won't hurt to have it in your repository, but it should
> be taken out of your pom.xml.
>
> > > > What is this plugin then:
> > > >
> http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai <sh...@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> So are you saying I do NOT need this and to remove it from my repository and
> my pom.xml?

Correct.  It won't hurt to have it in your repository, but it should
be taken out of your pom.xml.

> > > What is this plugin then:
> > > http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> I still get this error. How do I fix this error as this plugin is already in
> my local repository:

> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
>
> GroupId: org.apache.maven.plugins
> ArtifactId: maven-javadoc-plugin
> Version: 2.1-SNAPSHOT
>
> Reason: Unable to download the artifact from any repository

Hmm.  Maybe plugins can't be installed manually easily.  I guess you
need to install it from SVN.

Or maybe save the following XML as
maven-javadoc-plugin-2.1-SNAPSHOT.pom will be sufficient.  Try putting
this with the jar file:

http://people.apache.org/~shinobu/maven-javadoc-plugin-2.1-SNAPSHOT.pom

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
I still get this error. How do I fix this error as this plugin is already in
my local repository:

[INFO] snapshot
org.apache.maven.plugins:maven-javadoc-plugin:2.1-SNAPSHOT:checking
for updates from ibiblio
Downloading:
http://snapshots.maven.codehaus.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPSHOT.p
om
[WARNING] Unable to get resource from repository mojo_snapshot (
http://snapshots.maven.codehaus.org/maven2)
Downloading:
http://cvs.apache.org/maven-snapshot-repository/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPS
HOT.pom
[WARNING] Unable to get resource from repository apache.snapshots (
http://cvs.apache.org/maven-snapshot-repository)
Downloading:
http://myfaces.zones.apache.org/dist/maven-repository/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1
-SNAPSHOT.pom
[WARNING] Unable to get resource from repository myfaces.staging (
http://myfaces.zones.apache.org/dist/maven-repository)
Downloading:
http://www.ibiblio.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/2.1-SNAPSHOT/maven-javadoc-plugin-2.1-SNAPSHOT.pom
[WARNING] Unable to get resource from repository ibiblio (
http://www.ibiblio.org/maven2)
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

GroupId: org.apache.maven.plugins
ArtifactId: maven-javadoc-plugin
Version: 2.1-SNAPSHOT

Reason: Unable to download the artifact from any repository

  org.apache.maven.plugins:maven-javadoc-plugin:pom:2.1-SNAPSHOT

from the specified remote repositories:
  ibiblio (http://www.ibiblio.org/maven2),
  central (http://repo1.maven.org/maven2),
  apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
  myfaces.staging (http://myfaces.zones.apache.org/dist/maven-repository),
  mojo_snapshot (http://snapshots.maven.codehaus.org/maven2)


[INFO]
------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 52 seconds
[INFO] Finished at: Fri Sep 22 11:09:06 PDT 2006
[INFO] Final Memory: 14M/27M
[INFO]
------------------------------------------------------------------------




On 9/21/06, Mick Knutson <mi...@gmail.com> wrote:
>
> So are you saying I do NOT need this and to remove it from my repository
> and my pom.xml?
>
> On 9/20/06, Shinobu Kawai < shinobu.kawai@gmail.com> wrote:
> >
> > Hi Mick,
> >
> > > What is this plugin then:
> > > http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
> > >
> > > Is this just the plugin?
> >
> > It's the result of the automatic conversion of m1 ibiblio to m2
> > ibiblio.  Maybe I should request it to be removed...
> >
> > Best regards,
> > -- Shinobu
> >
> > --
> > Shinobu Kawai <sh...@gmail.com>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>
>
> --
>
> Thanks
>
> DJ MICK
> http://www.djmick.com
> http://www.myspace.com/mickknutson
>



-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
So are you saying I do NOT need this and to remove it from my repository and
my pom.xml?

On 9/20/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> > What is this plugin then:
> > http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
> >
> > Is this just the plugin?
>
> It's the result of the automatic conversion of m1 ibiblio to m2
> ibiblio.  Maybe I should request it to be removed...
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai <sh...@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> What is this plugin then:
> http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/
>
> Is this just the plugin?

It's the result of the automatic conversion of m1 ibiblio to m2
ibiblio.  Maybe I should request it to be removed...

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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


Re: error with doccheck still

Posted by Mick Knutson <mi...@gmail.com>.
What is this plugin then:
http://www.ibiblio.org/maven2/doccheck/maven-doccheck-plugin/1.4-0.1/

Is this just the plugin?




On 9/19/06, Shinobu Kawai <sh...@gmail.com> wrote:
>
> Hi Mick,
>
> > Does anyone else have doccheck running?
>
> The DocCheck plugin is only for M1.
>
> For usage with M2, please see here:
> http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x
>
> ## Actually, I need to update the documents based on the actual fix
> for MJAVADOC-81
>
> Best regards,
> -- Shinobu
>
> --
> Shinobu Kawai < shinobu.kawai@gmail.com>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 

Thanks

DJ MICK
http://www.djmick.com
http://www.myspace.com/mickknutson

Re: error with doccheck still

Posted by Shinobu Kawai <sh...@gmail.com>.
Hi Mick,

> Does anyone else have doccheck running?

The DocCheck plugin is only for M1.

For usage with M2, please see here:
http://maven-doccheck.sourceforge.net/install-plugin.html#For_Maven_2_x

## Actually, I need to update the documents based on the actual fix
for MJAVADOC-81

Best regards,
-- Shinobu

--
Shinobu Kawai <sh...@gmail.com>

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