[ANN] Apache Maven JXR Plugin 3.1.1 Released

2021-04-22 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache Maven 
JXR Plugin, version 3.1.1

The JXR Plugin produces a cross-reference of the project's sources. The 
generated reports make it easier for the user to reference or find specific 
lines of code. It is also handy when used with the PMD Plugin for referencing 
errors found in the code.

https://maven.apache.org/jxr/maven-jxr-plugin/

You should specify the version in your project's plugin configuration:


org.apache.maven.plugins
maven-jxr-plugin
3.1.1


You can download the appropriate sources etc. from the download page:

https://maven.apache.org/jxr/download.html



Release Notes - Maven JXR - Version 3.1.1

** Bug
    * [JXR-141] - Invalid HTML generation when having multiple occurences of 
the same class on one line
    * [JXR-153] - JxrReportTest depends on platform default encoding
    * [JXR-154] - xref-test package summary lists also classes from main source 
directories
    * [JXR-158] - StringEntry shouldn't be Comparable

** Improvement

    * [JXR-142] - Switch to CDI
    * [JXR-143] - New goals jxr-no-fork and test-jxr-no-fork which will not 
invoke generate-*-sources
    * [JXR-144] - Require Maven 3.1.0
    * [JXR-147] - make build Reproducible
    * [JXR-150] - AbstractJxrReport.java uses or overrides a deprecated API.
    * [JXR-151] - Update apache commons

** Dependency upgrade
    * [JXR-146] - upgrade Doxia Sitetools to 1.9.2 to remove dependency on 
Struts
    * [JXR-159] - Prerequisites - Maven 3.1.1


Enjoy,


-The Apache Maven team


maven-jxr-plugin release please (to generate report without forking lifecycle)

2020-05-12 Thread Andreas Sewe
Hi,

the maven-javadoc-plugin and maven-surefire-report-plugin both have
goals/reports (javadoc-no-fork and report-only, respectively) that don't
require forking the build lifecycle. But unfortunately, a simpe

  mvn clean deploy site-deploy

still needs to do that because of the maven-jxr-plugin. which forks a
lifecycle to reach the generate-test-sources phase.

AFAICT, the current master contains equivalent goals for the
maven-jxr-plugin as well [1], but there hasn't been a release since,
with version 3.0.0 dating back to 2018.

Would it hence be possible to perform a 3.1.0 release?

Best wishes,

Andreas

[1]
<https://github.com/apache/maven-jxr/blob/master/maven-jxr-plugin/src/site/apt/examples/nofork.apt.vm>



signature.asc
Description: OpenPGP digital signature


[ANN] Apache Maven JXR Plugin 3.0.0 Released

2018-09-25 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Apache  
Maven JXR Plugin, version 3.0.0


The JXR Plugin produces a cross-reference of the project's sources. The  
generated reports make it easier for the user to reference or find  
specific lines of code.


https://maven.apache.org/jxr/maven-jxr-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-jxr-plugin
  3.0.0


You can download the appropriate sources etc. from the download page:

https://maven.apache.org/jxr/download.cgi

Release Notes - Maven JXR Plugin - Version 3.0.0

** Bug
* [JXR-68] - ignores classes with same name in other packages
* [JXR-98] - Nested classes aren't linked correctly
* [JXR-100] - Method declaration: using spaces before or after  
parenthesis prevents cross references generation

* [JXR-126] - File write using platform default encoding
* [JXR-135] - Invalid representation of inner class
* [JXR-140] - Proper URL handling

** Improvement
* [JXR-110] - Use equivalent css/images of javadoc
* [JXR-124] - Remove excluded DEPENDENCIES file if new parent is used.
* [JXR-125] - Upgrade to Maven 3.0 compatibility
* [JXR-127] - Create anchor for classes generated from a Java source  
file
* [JXR-131] - Reports 'jxr' and 'test-jxr' do not contain generated  
sources.
* [JXR-132] - Aggregator reports should not require modules to be  
installed/deployed.


** Task
* [JXR-134] - switch to Git


NOTE: Special thanks for the contributions retrieved during the hackathon  
at JCreate.



Enjoy,

-The Apache Maven team

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



[ANN] Maven JXR and Maven JXR Plugin 2.2 Released

2010-06-06 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven JXR and
Maven JXR Plugin, version 2.2.

The JXR Plugin produces a cross-reference of the project's sources. The
generated reports make it easier for the user to reference or find
specific lines of code. It is also handy when used with the PMD Plugin
for referencing errors found in the code.

http://maven.apache.org/jxr/

http://maven.apache.org/plugins/maven-jxr-plugin/

You should specify the version in your project's plugin configuration in
the  section of the POM:


 org.apache.maven.plugins
 maven-jxr-plugin
 2.2



Release Notes - Maven JXR - Version 2.2

** Bug
* [JXR-51] - Javadoc link broken for site:stage
* [JXR-52] - Dont generate xref report if project has pom packaging
and src/main exists
* [JXR-53] - Add a link to test javadoc
* [JXR-55] - Add dedicated resource bundle for English
* [JXR-57] - Change type of outputDirectory parameter to java.io.File

** Improvement
* [JXR-56] - Add german translation
* [JXR-60] - use ${project.build.sourceEncoding} as default value
for "inputEncoding" parameter
* [JXR-81] - Add "implements" to keyword filter
* [JXR-82] - Add "jxr_linenumber" class to generated line number anchors

** New Feature
* [JXR-67] - use ${project.reporting.outputEncoding} as default
value for "outputEncoding" parameter and default to UTF-8
* [JXR-77] - Add Swedish translation

** Wish
* [JXR-62] - Make file encoding default to platform encoding


Enjoy,

-The Maven team

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



Re: [M2] maven-jxr-plugin

2006-09-20 Thread CodingPlayer

thanks that information helped me out.

Simply changed:

  
src/main
src/test

  


to:
  
src/main/java
src/test/java

  

now everything works fine.



Fabrice BELLINGARD wrote:
> 
> Hi,
> 
> one guy on this mailing list already had such a case: the problem would
> come
> from the fact that he didn't specify his source directory properly in his
> POM. And you problem is probably the same: I can see that because the
> generated HTML files are place in the folder "\target\site\xref\java". So
> I
> guess your POM is not correct.
> 
> HTH,
> Fabrice.
> 
> On 9/19/06, CodingPlayer <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi All,
>>
>> I'm currently trying to get the maven-jxr-plugin running.
>>
>> But there seems to be a bug in the plugIn or something missing in my
>> configuration.
>>
>> The Source Reference Pages are generated (when i run mvn site:site), but
>> the
>> packackge-frame.html and the package-summary.html are stored in a
>> different
>> folder as the class.html files.
>>
>> This problems ends up with missing links to the class.html files.
>>
>>
>> in detail:
>> the package-frame.html... is stored at
>>
>>\target\site\xref\com\company\sub-package
>>
>> but the class.html files are stored at
>>
>>\target\site\xref\java\com\company\sub-package
>>
>>
>>
>> Since i'm new to Maven2, i couldn't find out how to configure the plugIn
>> correctly.
>>
>> I even tried to pass a
>> ${project.build.directory}/site/xref but the problem
>> still occurs.
>>
>> thankful 4 any help
>> R.C.
>> --
>> View this message in context:
>> http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6390324
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 

-- 
View this message in context: 
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6409209
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] maven-jxr-plugin

2006-09-20 Thread CodingPlayer

thx, for your reply.

i just ask myself, is there any project.property that points to the current
source directory?

Since i'm using a parent POM (where i define my plugIns) and some child-poms
that are derived from that parent, i can not declare absolute pathes to the
source-directory. i would need something like this:


  

  
org.apache.maven.plugins
    maven-jxr-plugin

  ${project.compileSourceRoots}

  

  

but the ${project.compileSourceRoots} property doesn't work.

i found this property here:
http://maven.apache.org/plugins/maven-jxr-plugin/jxr-mojo.html

thankful 4 any help


Fabrice BELLINGARD wrote:
> 
> Hi,
> 
> one guy on this mailing list already had such a case: the problem would
> come
> from the fact that he didn't specify his source directory properly in his
> POM. And you problem is probably the same: I can see that because the
> generated HTML files are place in the folder "\target\site\xref\java". So
> I
> guess your POM is not correct.
> 
> HTH,
> Fabrice.
> 
> On 9/19/06, CodingPlayer <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi All,
>>
>> I'm currently trying to get the maven-jxr-plugin running.
>>
>> But there seems to be a bug in the plugIn or something missing in my
>> configuration.
>>
>> The Source Reference Pages are generated (when i run mvn site:site), but
>> the
>> packackge-frame.html and the package-summary.html are stored in a
>> different
>> folder as the class.html files.
>>
>> This problems ends up with missing links to the class.html files.
>>
>>
>> in detail:
>> the package-frame.html... is stored at
>>
>>\target\site\xref\com\company\sub-package
>>
>> but the class.html files are stored at
>>
>>\target\site\xref\java\com\company\sub-package
>>
>>
>>
>> Since i'm new to Maven2, i couldn't find out how to configure the plugIn
>> correctly.
>>
>> I even tried to pass a
>> ${project.build.directory}/site/xref but the problem
>> still occurs.
>>
>> thankful 4 any help
>> R.C.
>> --
>> View this message in context:
>> http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6390324
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 

-- 
View this message in context: 
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6409005
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] maven-jxr-plugin

2006-09-20 Thread Fabrice BELLINGARD

Hi,

one guy on this mailing list already had such a case: the problem would come
from the fact that he didn't specify his source directory properly in his
POM. And you problem is probably the same: I can see that because the
generated HTML files are place in the folder "\target\site\xref\java". So I
guess your POM is not correct.

HTH,
Fabrice.

On 9/19/06, CodingPlayer <[EMAIL PROTECTED]> wrote:



Hi All,

I'm currently trying to get the maven-jxr-plugin running.

But there seems to be a bug in the plugIn or something missing in my
configuration.

The Source Reference Pages are generated (when i run mvn site:site), but
the
packackge-frame.html and the package-summary.html are stored in a
different
folder as the class.html files.

This problems ends up with missing links to the class.html files.


in detail:
the package-frame.html... is stored at

   \target\site\xref\com\company\sub-package

but the class.html files are stored at

   \target\site\xref\java\com\company\sub-package



Since i'm new to Maven2, i couldn't find out how to configure the plugIn
correctly.

I even tried to pass a
${project.build.directory}/site/xref but the problem
still occurs.

thankful 4 any help
R.C.
--
View this message in context:
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6390324
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: [M2] maven-jxr-plugin

2006-09-20 Thread CodingPlayer

i didn't specify any version in the master POM.


  
org.apache.maven.plugins
    maven-jxr-plugin
  


but in my local repository i found:
.m2\repository\org\apache\maven\plugins\maven-jxr-plugin\2.0\maven-jxr-plugin-2.0.jar
+ *.pom + ...

thx 4 your help


diroussel wrote:
> 
> What version are you using?   I'm using jxr-maven-plugin\2.0-beta-1 and I
> don't seem to have that problem.
> 
> 
> CodingPlayer wrote:
>> 
>> Hi All,
>> 
>> I'm currently trying to get the maven-jxr-plugin running.
>> 
>> But there seems to be a bug in the plugIn or something missing in my
>> configuration.
>> 
>> The Source Reference Pages are generated (when i run mvn site:site), but
>> the packackge-frame.html and the package-summary.html are stored in a
>> different folder as the class.html files.
>> 
>> This problems ends up with missing links to the class.html files.
>> 
>> 
>> in detail:
>> the package-frame.html... is stored at
>> 
>>\target\site\xref\com\company\sub-package
>> 
>> but the class.html files are stored at
>> 
>>\target\site\xref\java\com\company\sub-package
>> 
>> 
>> 
>> Since i'm new to Maven2, i couldn't find out how to configure the plugIn
>> correctly.
>> 
>> I even tried to pass a
>> ${project.build.directory}/site/xref but the problem
>> still occurs.
>> 
>> thankful 4 any help
>> R.C.
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6403861
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] maven-jxr-plugin

2006-09-19 Thread diroussel

What version are you using?   I'm using jxr-maven-plugin\2.0-beta-1 and I
don't seem to have that problem.


CodingPlayer wrote:
> 
> Hi All,
> 
> I'm currently trying to get the maven-jxr-plugin running.
> 
> But there seems to be a bug in the plugIn or something missing in my
> configuration.
> 
> The Source Reference Pages are generated (when i run mvn site:site), but
> the packackge-frame.html and the package-summary.html are stored in a
> different folder as the class.html files.
> 
> This problems ends up with missing links to the class.html files.
> 
> 
> in detail:
> the package-frame.html... is stored at
> 
>\target\site\xref\com\company\sub-package
> 
> but the class.html files are stored at
> 
>\target\site\xref\java\com\company\sub-package
> 
> 
> 
> Since i'm new to Maven2, i couldn't find out how to configure the plugIn
> correctly.
> 
> I even tried to pass a
> ${project.build.directory}/site/xref but the problem
> still occurs.
> 
> thankful 4 any help
> R.C.
> 

-- 
View this message in context: 
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6393393
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[M2] maven-jxr-plugin

2006-09-19 Thread CodingPlayer

Hi All,

I'm currently trying to get the maven-jxr-plugin running.

But there seems to be a bug in the plugIn or something missing in my
configuration.

The Source Reference Pages are generated (when i run mvn site:site), but the
packackge-frame.html and the package-summary.html are stored in a different
folder as the class.html files.

This problems ends up with missing links to the class.html files.


in detail:
the package-frame.html... is stored at

   \target\site\xref\com\company\sub-package

but the class.html files are stored at

   \target\site\xref\java\com\company\sub-package



Since i'm new to Maven2, i couldn't find out how to configure the plugIn
correctly.

I even tried to pass a
${project.build.directory}/site/xref but the problem
still occurs.

thankful 4 any help
R.C.
-- 
View this message in context: 
http://www.nabble.com/-M2--maven-jxr-plugin-tf2299647.html#a6390324
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven JXR Plugin - Version 2.0

2006-07-12 Thread Fabrice BELLINGARD

Yes it's available on ibiblio:
http://ibiblio.org/maven2/org/apache/maven/plugins/maven-jxr-plugin/2.0/
Your dependency should work fine...


On 7/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
wrote:


thks ... but I do not want to do anything else but specifying a plugin in
my pom:


   org.apache.maven.plugins
   maven-jxr-plugin
   2.0


Is this version of the plugin not available on any repository ?





> Its here:
> http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jxr-plugin
>
>
> [EMAIL PROTECTED] wrote:
> > Hello,
> >
> > I would like to use the Maven JXR plugin version 2.0 instead of
2.0-beta-1
> > because I need a bug fixing (MJXR-11):
> >
> > http://www.mail-archive.com/announce@maven.apache.org/msg00036.html
> >
> > On which repository can I find the version 2.0 of this plugin ? It 's
not
> > available on repo1:
> >
> > http://www.ibiblio.org/maven2/org/codehaus/mojo/jxr-maven-plugin/
> >
> > Thks for your help
> > Olivier
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: Maven JXR Plugin - Version 2.0

2006-07-12 Thread olivier . lambert
thks ... but I do not want to do anything else but specifying a plugin in
my pom:


   org.apache.maven.plugins
   maven-jxr-plugin
   2.0


Is this version of the plugin not available on any repository ?





> Its here:
> http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jxr-plugin
>
>
> [EMAIL PROTECTED] wrote:
> > Hello,
> >
> > I would like to use the Maven JXR plugin version 2.0 instead of
2.0-beta-1
> > because I need a bug fixing (MJXR-11):
> >
> > http://www.mail-archive.com/announce@maven.apache.org/msg00036.html
> >
> > On which repository can I find the version 2.0 of this plugin ? It 's
not
> > available on repo1:
> >
> > http://www.ibiblio.org/maven2/org/codehaus/mojo/jxr-maven-plugin/
> >
> > Thks for your help
> > Olivier
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven JXR Plugin - Version 2.0

2006-07-12 Thread Edwin Punzalan


Its here: 
http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jxr-plugin



[EMAIL PROTECTED] wrote:

Hello,

I would like to use the Maven JXR plugin version 2.0 instead of 2.0-beta-1
because I need a bug fixing (MJXR-11):

http://www.mail-archive.com/announce@maven.apache.org/msg00036.html

On which repository can I find the version 2.0 of this plugin ? It 's not
available on repo1:

http://www.ibiblio.org/maven2/org/codehaus/mojo/jxr-maven-plugin/

Thks for your help
Olivier


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven JXR Plugin - Version 2.0

2006-07-12 Thread olivier . lambert

Hello,

I would like to use the Maven JXR plugin version 2.0 instead of 2.0-beta-1
because I need a bug fixing (MJXR-11):

http://www.mail-archive.com/announce@maven.apache.org/msg00036.html

On which repository can I find the version 2.0 of this plugin ? It 's not
available on repo1:

http://www.ibiblio.org/maven2/org/codehaus/mojo/jxr-maven-plugin/

Thks for your help
Olivier


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Ann] Maven JXR Plugin 2.0

2006-05-13 Thread Brett Porter
The Maven team is pleased to announce the release of the Maven JXR 
Plugin, version 2.0.


http://maven.apache.org/plugins/maven-jxr-plugin/

You can run mvn -U to get the latest version of the plugin, or specify
the version in your project's plugin configuration:


   org.apache.maven.plugins
   maven-jxr-plugin
   2.0


Changes:
http://jira.codehaus.org/secure/ReleaseNote.jspa?version=12480&styleName=Text&projectId=11194&Create=Create

* [MJXR-3] - [JXR] botton doesn't include current year for license text
* [MJXR-6] - Jxr breaks in projects with generated-sources directories
* [MJXR-11] - long/complex destination directories for site cause a 
"String index out of range" error
* [MJXR-2] - don't generated summary page and include both reports in 
menu like m1

* [MJXR-9] - JXR Plugin Documentation and How to use APT doc
* [MJXR-1] - add an  option











-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ANN] Maven JXR Plugin 1.5 for Maven 1.x released

2006-02-24 Thread ltheussl
We are pleased to announce the Maven JXR Plugin 1.5 release! 

http://maven.apache.org/maven-1.x/reference/plugins/jxr/

Create cross reference. 

===

Changes in this version include:

  New Features:

o New property to make inclusion of test Xref optional. Fixes MPJXR-32. 

  Fixed bugs:

o Use maven.compile.src.setinstead of pom.build.sourceDirectory. Fixes 
  MPJXR-3. 
o Source X-Ref Plugin reverses backslashes. Fixes MPJXR-31. 

  Changes:

o Upgrade to maven-jxr 1.0 
o Update dependencies to match ones in maven 1.1 core and to unify them 
  between plugins. The following dependencies are updated : 
  commons-collections v3.1 -> v3.0 commons-logging v1.0.3 -> v1.0.4 oro 
  v2.0.7 -> v2.0.8 Fixes MAVEN-1712.  

===


To automatically install the plugin, type the following on a single line:

maven plugin:download
  
-Dmaven.repo.remote=http://www.ibiblio.org/maven,http://cvs.apache.org/repository/
  -DgroupId=maven
  -DartifactId=maven-jxr-plugin
  -Dversion=1.5

For a manual installation, you can download the plugin here:
http://www.apache.org/dyn/closer.cgi/java-repository/maven/plugins/maven-jxr-plugin-1.5.jar
 

Have fun!
-The Maven JXR Plugin development team

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



maven-jxr-plugin

2005-04-01 Thread Stephen Gray
hi,

I have a problem with my jxr plugin. It will generate all the packages and
links but the links are wrong. I have a directory structure something like
this common
 jarsrc
  com
   nexala
ant
 java file.  My java files would be 
in the package com.nexala.ant.
When the directory xref is created it creates the structure com.nexala.ant
and places the package-summary.html files in it but not the html converted
java files. It places them a seperate structure
common/jarsrc/com/nexala/ant. I have different packages and different
structures so I cant just change the link. Why is this and can it be
resolved? Any ideas would be greatly appreciated.

Thanks

Stephen



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



maven-jxr plugin

2005-03-31 Thread Stephen Gray
Hi,

I have a problem with my jxr-plugin. It generates ok but the links to the
classes arebroken. Thelink is using the following address
xref/com/nexala/db/a.html when it should be
xref/jarsrc/com/nexala/db/a.html. Why is this happening and can
change it?

Thanks



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven JXR plugin download

2003-08-28 Thread Kumar, Vaidhyanatha K.
Are there any new Maven-JXR plugin available as a binary? 
Thanks
Vaidhy