Re: report encoding problem (doxia)

2009-09-04 Thread javadevd...@googlemail.com
Hi!

Mhh.. the code is not accessible, sorry...
But my eclipse uses UTF-8, the compiler is configured to use UTF-8...
Is there any other way, to check when the String is converted wrong ?!
(I think you're right, its before doxia)

If there is no other solution, i think the string should be defined in
a prop-file...

thanks,

2009/9/3 Hervé BOUTEMY herve.bout...@free.fr:
 Hi,

 If you're writing your report, ie java code using Doxia API, you're writing
 Strings, without any encoding notion.
 Are you sure the content isn't broken before you send it to Doxia?

 Is your code accessible somewhere?

 Regards,

 Hervé

 Le jeudi 03 septembre 2009, javadevd...@googlemail.com a écrit :
 Hello!

 I'm writing my own maven-report plugin, which should create some output.
 This output is made with doxia, how it's explained in the tutorials.

 The problems are the german umlauts. I use it directly in the code (as
 String) to put via doxia into the html-page.(report)
 But the report don't shows the umlauts correctly. My problem is, that
 i don't know, where the encoding for doxia can be changed. (because
 doxia is initialized within the AbstractMavenReport)

 I'm a little bit confused, because there are a lot of descriptions in
 the net, that the default encoding is UTF-8 , so that there should be
 no problem with german umlauts.
 I have also tried to use the project.reporting.outputEncoding
 property in the pom, but nothing changes.

 Are there any experiences with that problem?

 thanks,,,

 Dave

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



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



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



dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
Hi all!

My problem is not easy to describe :-) But i try it...
I have add a picture to this mail, where the situation is painted..

The Situation:

There are two versions of my project.
- Version 3: This version is in production and has been frozen. (the
repository for V3 is offline, that no changes from dependencies can make
trouble...)
- Version 4: This is the actual developed Version. It usees another remote
Repository because some dependencies changed.

Using eclipse M2 plugin for developing.

The Problem:

All dependencies (from V3 and V4) are at the same time in the local
repository. And there is one special dependency (can also be transitive)
with no fixed version. (red circle in painting)
In V4 there was created a new Version for that dependency (from a third
party! But i didn't recocnize, because maven fetch it automaticly!!)
Now, there is also a new Version of that dependeny in the local repository.

Suddenly there should be a bug fixing in V3! (So the frozen version should
be used to change something...)
But, the changed dependency, described above, is in the local repository and
is also be used from V3, what is wrong, because the frozen state used
another version!
(Another version can have some differences, where the build doesn't break,
but some different behaoviours can be in the software... so there are
unpredictable bugs!)

Some possible solutions, and why they aren't real solutions:

1) clean the local repository before bug fixing V3:
To fetch all dependencies from remote Repository V3 needs some time. And the
developer must be able to switch beetween V3 and V4 very fast. To clean and
reload the local repository is to time-intensive, and if some changes are
made in V4, and after that again in V3, the clean should be made again and
again
2) change dependencies version-range to one version only:
I have to look for all dependencies, transitive dependencies etc. where some
version ranges can be defined. This is to much to look for!

So... If anythink is not described properly, please ask :-)

I hope there is any solution for that problem...
Thanks if you are a this point! :-)

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

Re: dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
Hi!

Thanks for the complete answer.
I think i described it a bit inconclusive. But the approach you described
will also not solve the problem:
because:
the dependency i described can be transitive! (I dont know every dependency
- for example - of spring, so it's impossible for me to check every
version-range of every dependency of spring ...)
So.. if I have one parent pom for all the different versions of the project,
there is still the problem, that some version range in any dependency (like
in the sample of my picture)
 - not defined by myself (a transitive from any third party) -
influence all versions!! (because the newest version is used, and the newest
version is first searched in the local repo - for all project versions)

To define different local repos for every project Version is possible, but
then there are some problems with automatic build (after storing changed
code) in M2Eclipse, because you cant give maven-parameters with it.

I hope it's a bit clearer...

thanks


2009/9/4 Jörg Schaible joerg.schai...@gmx.de

 Hi,

 javadevd...@googlemail.com wrote at Freitag, 4. September 2009 09:38:

  Hi all!
 
  My problem is not easy to describe :-) But i try it...
  I have add a picture to this mail, where the situation is painted..
 
  The Situation:
 
  There are two versions of my project.
  - Version 3: This version is in production and has been frozen. (the
  repository for V3 is offline, that no changes from dependencies can make
  trouble...)
  - Version 4: This is the actual developed Version. It usees another
 remote
  Repository because some dependencies changed.
 
  Using eclipse M2 plugin for developing.
 
  The Problem:
 
  All dependencies (from V3 and V4) are at the same time in the local
  repository. And there is one special dependency (can also be transitive)
  with no fixed version. (red circle in painting)
  In V4 there was created a new Version for that dependency (from a third
  party! But i didn't recocnize, because maven fetch it automaticly!!)
  Now, there is also a new Version of that dependeny in the local
  repository.
 
  Suddenly there should be a bug fixing in V3! (So the frozen version
 should
  be used to change something...)
  But, the changed dependency, described above, is in the local repository
  and is also be used from V3, what is wrong, because the frozen state used
  another version!
  (Another version can have some differences, where the build doesn't
 break,
  but some different behaoviours can be in the software... so there are
  unpredictable bugs!)
 
  Some possible solutions, and why they aren't real solutions:
 
  1) clean the local repository before bug fixing V3:
  To fetch all dependencies from remote Repository V3 needs some time. And
  the developer must be able to switch beetween V3 and V4 very fast. To
  clean and reload the local repository is to time-intensive, and if some
  changes are made in V4, and after that again in V3, the clean should be
  made again and again
  2) change dependencies version-range to one version only:
  I have to look for all dependencies, transitive dependencies etc. where
  some version ranges can be defined. This is to much to look for!
 
  So... If anythink is not described properly, please ask :-)

 Maybe you should reconsider your complete approach and start using Maven
 for
 the version management instead of managing the versions by exchanging
 repositories on your own. In this case Maven cannot help you and you
 already face the problem. See, we use M2 now since years and we're now -
 compared to your numbering scheme - at V10. However, I don't have to clear
 my local repo to switch between different code lines.

 Basically start using a parent POM that is global for your project i.e.
 every POM of your project will inherit either directly or indirectly from
 that one. Use in this global POM a dependencyMgmt section and define there
 all your deps with fix versions. That's it. This global POM will define
 that for your complete project all the used versions everytime. There's no
 possibility anymore to get suddenly something else and this is completely
 independent from the stuff in your local repo.

  I hope there is any solution for that problem...

 The location of the local repo is defined in the settings.xml. You can use
 a
 separate settings.xml, its name and location can be defined from the
 command line.

  Thanks if you are a this point! :-)

 No, I won't get there, because we take a different approach. You should
 really reconsider yours.

 - Jörg


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




Re: dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
there is no picture? I added it to the first mail.. and i can see it as an
attachment... I try it again with that mail...

I already use Maven for complete Version Management.

Use in this global POM a dependencyMgmt section and define there
all your deps with fix versions.

And here is the problem. This is not possible because the problem I
described is a transitive dependency, I don't know! (Because its in any
dependency of another dependency...) So defining fix versions of the
first-direct dependency is ok (DEP_A). But if there are dependencies in
DEP_A (DEP_A-DEP_B) and DEP_B has some dependeny with open version-ranges
(DEP_Copen)...
then I cant influence this. And there is suddenly a new version of the
dependency (DEP_Copen) used by all versions of my project (V3,V4 etc.).. and
then there can be unpredictable bugs... (in an older tested version of my
project)

I think the picture is very important to understand this use case, so I add
it again...

thanks...

Dave




2009/9/4 Stephen Connolly stephen.alan.conno...@gmail.com

 1. you refer to a non-existant picture

 2. Jorg's solution is the way to go.

 -Stephen

 2009/9/4 javadevd...@googlemail.com javadevd...@googlemail.com

  Hi!
 
  Thanks for the complete answer.
  I think i described it a bit inconclusive. But the approach you described
  will also not solve the problem:
  because:
  the dependency i described can be transitive! (I dont know every
 dependency
  - for example - of spring, so it's impossible for me to check every
  version-range of every dependency of spring ...)
  So.. if I have one parent pom for all the different versions of the
  project,
  there is still the problem, that some version range in any dependency
 (like
  in the sample of my picture)
   - not defined by myself (a transitive from any third party) -
  influence all versions!! (because the newest version is used, and the
  newest
  version is first searched in the local repo - for all project versions)
 
  To define different local repos for every project Version is possible,
 but
  then there are some problems with automatic build (after storing changed
  code) in M2Eclipse, because you cant give maven-parameters with it.
 
  I hope it's a bit clearer...
 
  thanks
 
 
  2009/9/4 Jörg Schaible joerg.schai...@gmx.de
 
   Hi,
  
   javadevd...@googlemail.com wrote at Freitag, 4. September 2009 09:38:
  
Hi all!
   
My problem is not easy to describe :-) But i try it...
I have add a picture to this mail, where the situation is painted..
   
The Situation:
   
There are two versions of my project.
- Version 3: This version is in production and has been frozen. (the
repository for V3 is offline, that no changes from dependencies can
  make
trouble...)
- Version 4: This is the actual developed Version. It usees another
   remote
Repository because some dependencies changed.
   
Using eclipse M2 plugin for developing.
   
The Problem:
   
All dependencies (from V3 and V4) are at the same time in the local
repository. And there is one special dependency (can also be
  transitive)
with no fixed version. (red circle in painting)
In V4 there was created a new Version for that dependency (from a
 third
party! But i didn't recocnize, because maven fetch it automaticly!!)
Now, there is also a new Version of that dependeny in the local
repository.
   
Suddenly there should be a bug fixing in V3! (So the frozen version
   should
be used to change something...)
But, the changed dependency, described above, is in the local
  repository
and is also be used from V3, what is wrong, because the frozen state
  used
another version!
(Another version can have some differences, where the build doesn't
   break,
but some different behaoviours can be in the software... so there are
unpredictable bugs!)
   
Some possible solutions, and why they aren't real solutions:
   
1) clean the local repository before bug fixing V3:
To fetch all dependencies from remote Repository V3 needs some time.
  And
the developer must be able to switch beetween V3 and V4 very fast. To
clean and reload the local repository is to time-intensive, and if
  some
changes are made in V4, and after that again in V3, the clean should
 be
made again and again
2) change dependencies version-range to one version only:
I have to look for all dependencies, transitive dependencies etc.
 where
some version ranges can be defined. This is to much to look for!
   
So... If anythink is not described properly, please ask :-)
  
   Maybe you should reconsider your complete approach and start using
 Maven
   for
   the version management instead of managing the versions by exchanging
   repositories on your own. In this case Maven cannot help you and you
   already face the problem. See, we use M2 now since years and we're now
 -
   compared to your numbering scheme - at V10

Re: dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
2009/9/4 javadevd...@googlemail.com javadevd...@googlemail.com

 there is no picture? I added it to the first mail.. and i can see it as an
 attachment... I try it again with that mail...

 I already use Maven for complete Version Management.

 Use in this global POM a dependencyMgmt section and define there
 all your deps with fix versions.

 And here is the problem. This is not possible because the problem I
 described is a transitive dependency, I don't know! (Because its in any
 dependency of another dependency...) So defining fix versions of the
 first-direct dependency is ok (DEP_A). But if there are dependencies in
 DEP_A (DEP_A-DEP_B) and DEP_B has some dependeny with open version-ranges
 (DEP_Copen)...
 then I cant influence this. And there is suddenly a new version of the
 dependency (DEP_Copen) used by all versions of my project (V3,V4 etc.).. and
 then there can be unpredictable bugs... (in an older tested version of my
 project)

 I think the picture is very important to understand this use case, so I add
 it again...

 thanks...

 Dave




 2009/9/4 Stephen Connolly stephen.alan.conno...@gmail.com

 1. you refer to a non-existant picture

 2. Jorg's solution is the way to go.

 -Stephen

 2009/9/4 javadevd...@googlemail.com javadevd...@googlemail.com

  Hi!
 
  Thanks for the complete answer.
  I think i described it a bit inconclusive. But the approach you
 described
  will also not solve the problem:
  because:
  the dependency i described can be transitive! (I dont know every
 dependency
  - for example - of spring, so it's impossible for me to check every
  version-range of every dependency of spring ...)
  So.. if I have one parent pom for all the different versions of the
  project,
  there is still the problem, that some version range in any dependency
 (like
  in the sample of my picture)
   - not defined by myself (a transitive from any third party) -
  influence all versions!! (because the newest version is used, and the
  newest
  version is first searched in the local repo - for all project versions)
 
  To define different local repos for every project Version is possible,
 but
  then there are some problems with automatic build (after storing changed
  code) in M2Eclipse, because you cant give maven-parameters with it.
 
  I hope it's a bit clearer...
 
  thanks
 
 
  2009/9/4 Jörg Schaible joerg.schai...@gmx.de
 
   Hi,
  
   javadevd...@googlemail.com wrote at Freitag, 4. September 2009 09:38:
  
Hi all!
   
My problem is not easy to describe :-) But i try it...
I have add a picture to this mail, where the situation is painted..
   
The Situation:
   
There are two versions of my project.
- Version 3: This version is in production and has been frozen. (the
repository for V3 is offline, that no changes from dependencies can
  make
trouble...)
- Version 4: This is the actual developed Version. It usees another
   remote
Repository because some dependencies changed.
   
Using eclipse M2 plugin for developing.
   
The Problem:
   
All dependencies (from V3 and V4) are at the same time in the local
repository. And there is one special dependency (can also be
  transitive)
with no fixed version. (red circle in painting)
In V4 there was created a new Version for that dependency (from a
 third
party! But i didn't recocnize, because maven fetch it automaticly!!)
Now, there is also a new Version of that dependeny in the local
repository.
   
Suddenly there should be a bug fixing in V3! (So the frozen version
   should
be used to change something...)
But, the changed dependency, described above, is in the local
  repository
and is also be used from V3, what is wrong, because the frozen state
  used
another version!
(Another version can have some differences, where the build doesn't
   break,
but some different behaoviours can be in the software... so there
 are
unpredictable bugs!)
   
Some possible solutions, and why they aren't real solutions:
   
1) clean the local repository before bug fixing V3:
To fetch all dependencies from remote Repository V3 needs some time.
  And
the developer must be able to switch beetween V3 and V4 very fast.
 To
clean and reload the local repository is to time-intensive, and if
  some
changes are made in V4, and after that again in V3, the clean should
 be
made again and again
2) change dependencies version-range to one version only:
I have to look for all dependencies, transitive dependencies etc.
 where
some version ranges can be defined. This is to much to look for!
   
So... If anythink is not described properly, please ask :-)
  
   Maybe you should reconsider your complete approach and start using
 Maven
   for
   the version management instead of managing the versions by exchanging
   repositories on your own. In this case Maven cannot help you and you
   already face the problem. See, we use M2

Re: dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
But all you described implies, that I know about this dependency. But I dont
know the dependency, it can happen in any transitive dependency.

Because attachements are not shown, i loaded the image to
http://goliatmesh.go.funpic.de/mavenDependencyProblem.jpg

Perhaps there is really something I didn't figure out, but I had a problem,
similar to this already :-(

thanks...


2009/9/4 Jörg Schaible joerg.schai...@gmx.de

 Hi Dave,

 javadevd...@googlemail.com wrote at Freitag, 4. September 2009 10:53:

  there is no picture? I added it to the first mail.. and i can see it as
 an
  attachment... I try it again with that mail...

 Maybe you did not realize yet, that versions defined in a depMgmt section
 do
 always take precedence - even for transitive deps!

  I already use Maven for complete Version Management.
 
 Use in this global POM a dependencyMgmt section and define there
 all your deps with fix versions.
 
  And here is the problem. This is not possible because the problem I
  described is a transitive dependency, I don't know! (Because its in any
  dependency of another dependency...) So defining fix versions of the
  first-direct dependency is ok (DEP_A). But if there are dependencies in
  DEP_A (DEP_A-DEP_B) and DEP_B has some dependeny with open
 version-ranges
  (DEP_Copen)...
  then I cant influence this. And there is suddenly a new version of the
  dependency (DEP_Copen) used by all versions of my project (V3,V4 etc.)..
  and then there can be unpredictable bugs... (in an older tested version
 of
  my project)
 
  I think the picture is very important to understand this use case, so I
  add it again...

 That's the whole point, the problem you describe in your use case does not
 exist in this way.

 - Jörg


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




Re: dependency / version problem

2009-09-04 Thread javadevd...@googlemail.com
sorry, that i'm so annoying ;-)

because this implies that at least one of the fix versions must have been
changed.

Thats not right (I think). Example:

My dependency: DEP_A:1.0
Dependency of DEP_A = DEP_B:2.3
Dependency of DEP_B:2.3 = DEP_C:[1.0,)

My dependency is fixed, and nothing changed.
Some day, there is a new Version of DEP_C, so DEP_B:2.3 use this new
version, because the dependency allows newer versions.

U say, that this use case will neber happen? So Maven ignores version Range
from DEP_B:2.3 to DEP_C ?

If this is right, than thanks for all the comments ;-) And the my use case
is really impossible...


dave


report encoding problem (doxia)

2009-09-03 Thread javadevd...@googlemail.com
Hello!

I'm writing my own maven-report plugin, which should create some output.
This output is made with doxia, how it's explained in the tutorials.

The problems are the german umlauts. I use it directly in the code (as
String) to put via doxia into the html-page.(report)
But the report don't shows the umlauts correctly. My problem is, that
i don't know, where the encoding for doxia can be changed. (because
doxia is initialized within the AbstractMavenReport)

I'm a little bit confused, because there are a lot of descriptions in
the net, that the default encoding is UTF-8 , so that there should be
no problem with german umlauts.
I have also tried to use the project.reporting.outputEncoding
property in the pom, but nothing changes.

Are there any experiences with that problem?

thanks,,,

Dave

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



Re: [MAVEN - PMD]

2009-07-16 Thread javadevd...@googlemail.com
Hi!

thanks for that answer... but why does it use pmd-jdk14 and not the
pmd-4.2.2.jar ?
(i looked for this jar as dependency and so i couldnt find the version...)

Is there a plan to adapt the maven-pmd-plugin to 4.2.5? (cause
ruleset- exclude patterns doesnt work with the actual plugin... but
with pm 4.2.5 )

Or is there another way, to say to the plugin to use pmd version 4.2.5?

thanks


2009/7/15 Arnaud HERITIER aherit...@gmail.com:
 PMD 4.2.2http://maven.apache.org/plugins/maven-pmd-plugin/dependencies.html

 Cheers,

 Arnaud

 # Arnaud Héritier
 # Software Factory Manager
 # eXo Platform
 # http://www.exoplatform.com
 # http://blog.aheritier.net


 On Wed, Jul 15, 2009 at 3:42 PM, javadevd...@googlemail.com 
 javadevd...@googlemail.com wrote:

 Hello!

 Does anybody know which PMD Version is included in the actual Maven-PMD
 plugin ?
 I cant find it on the website..

 thanks...

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




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



Re: [MAVEN - PMD]

2009-07-16 Thread javadevd...@googlemail.com
he, thanks, again for the answer.. but ...

...my real problem is, that the behavior of the maven plugin using
dependency to pmd-jdk14(4.2.5), is another than pmd version 4.2.5
applied from console!
Im have my own ruleset configuration with an exlude pattern. This
exclude-pattern is correctly used from pmd, but ignored when I start
from maven-pmd-plugin...

Is this a bug?

thanks

2009/7/16 Arnaud HERITIER aherit...@gmail.com:
 The issue is already opened : http://jira.codehaus.org/browse/MPMD-97pmd-jdk14
 is used because maven  2.2.0 has to be compatible with Java 1.4
 In the meantime you can try to upgrade locally the pmd version used in the
 plugin with :


  build
    plugins
      plugin
        groupIdorg.apache.maven.plugins/groupId
        artifactIdmaven-pmd-plugin/artifactId
        version2.3/version

        dependencies

          dependency
              groupIdpmd/groupId
              artifactIdpmd-jdk14/artifactId
              version4.2.5/version
          /dependency

        /dependencies
      /plugin
    /plugins
  /build


 Cheers,

 Arnaud

 # Arnaud Héritier
 # Software Factory Manager
 # eXo Platform
 # http://www.exoplatform.com
 # http://blog.aheritier.net


 On Thu, Jul 16, 2009 at 8:02 AM, javadevd...@googlemail.com 
 javadevd...@googlemail.com wrote:

 Hi!

 thanks for that answer... but why does it use pmd-jdk14 and not the
 pmd-4.2.2.jar ?
 (i looked for this jar as dependency and so i couldnt find the version...)

 Is there a plan to adapt the maven-pmd-plugin to 4.2.5? (cause
 ruleset- exclude patterns doesnt work with the actual plugin... but
 with pm 4.2.5 )

 Or is there another way, to say to the plugin to use pmd version 4.2.5?

 thanks


 2009/7/15 Arnaud HERITIER aherit...@gmail.com:
  PMD 4.2.2
 http://maven.apache.org/plugins/maven-pmd-plugin/dependencies.html
 
  Cheers,
 
  Arnaud
 
  # Arnaud Héritier
  # Software Factory Manager
  # eXo Platform
  # http://www.exoplatform.com
  # http://blog.aheritier.net
 
 
  On Wed, Jul 15, 2009 at 3:42 PM, javadevd...@googlemail.com 
  javadevd...@googlemail.com wrote:
 
  Hello!
 
  Does anybody know which PMD Version is included in the actual Maven-PMD
  plugin ?
  I cant find it on the website..
 
  thanks...
 
  -
  To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
  For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

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




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



Re: [MAVEN - PMD]

2009-07-16 Thread javadevd...@googlemail.com
it's a bug for one year now... :-(

http://jira.codehaus.org/browse/MPMD-84


2009/7/16 Arnaud HERITIER aherit...@gmail.com:
 It's possible. I don't know.
 Cheers,

 Arnaud

 # Arnaud Héritier
 # Software Factory Manager
 # eXo Platform
 # http://www.exoplatform.com
 # http://blog.aheritier.net


 On Thu, Jul 16, 2009 at 12:40 PM, javadevd...@googlemail.com 
 javadevd...@googlemail.com wrote:

 he, thanks, again for the answer.. but ...

 ...my real problem is, that the behavior of the maven plugin using
 dependency to pmd-jdk14(4.2.5), is another than pmd version 4.2.5
 applied from console!
 Im have my own ruleset configuration with an exlude pattern. This
 exclude-pattern is correctly used from pmd, but ignored when I start
 from maven-pmd-plugin...

 Is this a bug?

 thanks

 2009/7/16 Arnaud HERITIER aherit...@gmail.com:
  The issue is already opened :
 http://jira.codehaus.org/browse/MPMD-97pmd-jdk14
  is used because maven  2.2.0 has to be compatible with Java 1.4
  In the meantime you can try to upgrade locally the pmd version used in
 the
  plugin with :
 
 
   build
     plugins
       plugin
         groupIdorg.apache.maven.plugins/groupId
         artifactIdmaven-pmd-plugin/artifactId
         version2.3/version
 
         dependencies
 
           dependency
               groupIdpmd/groupId
               artifactIdpmd-jdk14/artifactId
               version4.2.5/version
           /dependency
 
         /dependencies
       /plugin
     /plugins
   /build
 
 
  Cheers,
 
  Arnaud
 
  # Arnaud Héritier
  # Software Factory Manager
  # eXo Platform
  # http://www.exoplatform.com
  # http://blog.aheritier.net
 
 
  On Thu, Jul 16, 2009 at 8:02 AM, javadevd...@googlemail.com 
  javadevd...@googlemail.com wrote:
 
  Hi!
 
  thanks for that answer... but why does it use pmd-jdk14 and not the
  pmd-4.2.2.jar ?
  (i looked for this jar as dependency and so i couldnt find the
 version...)
 
  Is there a plan to adapt the maven-pmd-plugin to 4.2.5? (cause
  ruleset- exclude patterns doesnt work with the actual plugin... but
  with pm 4.2.5 )
 
  Or is there another way, to say to the plugin to use pmd version 4.2.5?
 
  thanks
 
 
  2009/7/15 Arnaud HERITIER aherit...@gmail.com:
   PMD 4.2.2
  http://maven.apache.org/plugins/maven-pmd-plugin/dependencies.html
  
   Cheers,
  
   Arnaud
  
   # Arnaud Héritier
   # Software Factory Manager
   # eXo Platform
   # http://www.exoplatform.com
   # http://blog.aheritier.net
  
  
   On Wed, Jul 15, 2009 at 3:42 PM, javadevd...@googlemail.com 
   javadevd...@googlemail.com wrote:
  
   Hello!
  
   Does anybody know which PMD Version is included in the actual
 Maven-PMD
   plugin ?
   I cant find it on the website..
  
   thanks...
  
   -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
 
  -
  To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
  For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

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




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



[MAVEN - PMD]

2009-07-15 Thread javadevd...@googlemail.com
Hello!

Does anybody know which PMD Version is included in the actual Maven-PMD plugin ?
I cant find it on the website..

thanks...

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