Re: No compile errors with plexus-compiler-eclipse

2012-11-30 Thread Olivier Lamy
2012/11/30 Peter Palmreuther :
> Hello,
>
> I'm trying to make use of plexus-compiler-eclipse by setting
>
> 
> maven-compiler-plugin
> 3.0
> 
> eclipse
> 
> 
> 
> org.codehaus.plexus
> plexus-compiler-eclipse
> 2.0
> 
> 
> 
>
> in pom.xml.
>
> mvn compile
>
> works, but in fact I still have errors in my code (I'm actually porting an 
> ant and xdoclet based project to maven).
> But instead of getting errors I see a lot of warnings and build succeeds.
>
> The warnings are not only about
>
> "Hashtable is a raw type. References to generic type Hashtable should be 
> parameterized"
>
> which I'd expect as a warning only, but also
>
> "Type mismatch: cannot convert from Object to MyBusinessFacadeRemote"
> or
> "MyBusinessServlet cannot be resolved"
> or
> "Unreachable catch block for RemoteException. This exception is never thrown 
> from the try statement body"
> or
> "The import foo.bar.Bla cannot be resolved"
>
> or even whole types (formerly xdoclet generated types I partially need to 
> create manually by myself and haven't done yet).
> These I'd expect to pop up as an error and fail the build. Instead it's only 
> printed as a warning and build continues.
>
> Am I configuring maven-compiler-plugin - and plexus-compile-eclipse - the 
> wrong way?
> Or is plexus-compiler-eclipse not raising these errors as such at all, which 
> would render it quite a bit useless at the moment?
maybe an issue.
Can you raise a jira entry with a sample project ?
> --
> Thanks in advance,
> and best regards,
>
> Peter
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>



--
Olivier Lamy
Talend: http://coders.talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: No compile errors with plexus-compiler-eclipse

2012-11-30 Thread Peter Palmreuther
Hello,

Am 30.11.2012 um 21:41 schrieb Olivier Lamy :

> 2012/11/30 Peter Palmreuther :
>> [...]
>> Am I configuring maven-compiler-plugin - and plexus-compile-eclipse - the 
>> wrong way?
>> Or is plexus-compiler-eclipse not raising these errors as such at all, which 
>> would render it quite a bit useless at the moment?
> maybe an issue.
> Can you raise a jira entry with a sample project ?

http://jira.codehaus.org/browse/PLXCOMP-215
-- 
Regards,

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



RE: No compile errors with plexus-compiler-eclipse

2012-12-02 Thread Martin Gainty

Hello Peter

I downloaded maven-eclipse-compiler version 1.9.2 from maven repo1 and was able 
to use the pom.xml to compile and package 
here is the pom.xml i implemented:

http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns="http://maven.apache.org/POM/4.0.0";> 
4.0.0  
 org.codehaus.plexus 
 plexus-compilers 
 1.9.2 
 org.codehaus.plexus 
plexus-compiler-eclipse 
1.9.2
Plexus Eclipse Compiler 
 
 
org.codehaus.plexus
plexus-container-default
  1.5.5
   
 
  org.codehaus.plexus
  plexus-compiler-api
  1.9.2
 
  
  org.codehaus.plexus 
  plexus-utils 
  3.0
  
  
  org.eclipse.jdt 
  core 
  3.3.0-v_771 
   

org.eclipse.core 
resources 


org.eclipse.core 
runtime 


org.eclipse.core 
filesystem 


org.eclipse 
text 

   
  
 
 
http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compiler-eclipse/1.9.2 
does this not compile for your environment?

Martin Gainty 
__ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.

 > From: li...@zentrumderarbeit.org
> Subject: No compile errors with plexus-compiler-eclipse
> Date: Fri, 30 Nov 2012 08:47:08 +0100
> To: users@maven.apache.org
> 
> Hello,
> 
> I'm trying to make use of plexus-compiler-eclipse by setting
> 
> 
>   maven-compiler-plugin
>   3.0
>   
>   eclipse
>   
>   
>   
>   org.codehaus.plexus
>   plexus-compiler-eclipse
>   2.0
>   
>   
> 
> 
> in pom.xml.
> 
> mvn compile
> 
> works, but in fact I still have errors in my code (I'm actually porting an 
> ant and xdoclet based project to maven).
> But instead of getting errors I see a lot of warnings and build succeeds.
> 
> The warnings are not only about 
> 
> "Hashtable is a raw type. References to generic type Hashtable should be 
> parameterized"
> 
> which I'd expect as a warning only, but also
> 
> "Type mismatch: cannot convert from Object to MyBusinessFacadeRemote"
> or
> "MyBusinessServlet cannot be resolved"
> or
> "Unreachable catch block for RemoteException. This exception is never thrown 
> from the try statement body"
> or
> "The import foo.bar.Bla cannot be resolved"
> 
> or even whole types (formerly xdoclet generated types I partially need to 
> create manually by myself and haven't done yet).
> These I'd expect to pop up as an error and fail the build. Instead it's only 
> printed as a warning and build continues.
> 
> Am I configuring maven-compiler-plugin - and plexus-compile-eclipse - the 
> wrong way?
> Or is plexus-compiler-eclipse not raising these errors as such at all, which 
> would render it quite a bit useless at the moment?
> -- 
> Thanks in advance,
> and best regards,
> 
> Peter
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
> 
  

Re: No compile errors with plexus-compiler-eclipse

2012-12-02 Thread Peter Palmreuther
Hello Martin,

Am 02.12.2012 um 15:37 schrieb Martin Gainty :
> I downloaded maven-eclipse-compiler version 1.9.2 from maven repo1 and was 
> able to use the pom.xml to compile and package 
> here is the pom.xml i implemented:
> [...]
> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compiler-eclipse/1.9.2
>  does this not compile for your environment?

Pardon?

My message was not about compiling plexus-comiler-eclipse itself, but using it 
to compile my very own stuff.
As requested by Olivier Lamy I already opened a JIRA issue about my objections, 
but thanks for your comment.
-- 
Best regards,

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



RE: No compile errors with plexus-compiler-eclipse

2012-12-02 Thread Martin Gainty


  > Subject: Re: No compile errors with plexus-compiler-eclipse
> From: pitpa...@gmail.com
> Date: Sun, 2 Dec 2012 20:05:53 +0100
> To: users@maven.apache.org
> 
> Hello Martin,
> 
> Am 02.12.2012 um 15:37 schrieb Martin Gainty :
> > I downloaded maven-eclipse-compiler version 1.9.2 from maven repo1 and was 
> > able to use the pom.xml to compile and package 
> > here is the pom.xml i implemented:
> > [...]
> > http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compiler-eclipse/1.9.2
> >  does this not compile for your environment?
> 
> Pardon?
> 
> My message was not about compiling plexus-comiler-eclipse itself, but using 
> it to compile my very own stuff.
> As requested by Olivier Lamy I already opened a JIRA issue about my 
> objections, but thanks for your comment.
> -- 
> Best regards,
> 
> Peter MG>understood..
MG>i too work in both environments and have implemented execution scripts 
calling legacy ANT build.xml target via maven-antrun-plugin

MG>pingback if you see a "maven functionality hole" that can only be filled by 
calling a taskdef'ed Java Ant class
MG>which *should* (eventually) be ported to a fully functional maven-plugin 
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
> 
  

Re: No compile errors with plexus-compiler-eclipse

2012-12-03 Thread Olivier Lamy
2012/12/2 Peter Palmreuther :
> Hello Martin,
>
> Am 02.12.2012 um 15:37 schrieb Martin Gainty :
>> I downloaded maven-eclipse-compiler version 1.9.2 from maven repo1 and was 
>> able to use the pom.xml to compile and package
>> here is the pom.xml i implemented:
>> [...]
>> http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-compiler-eclipse/1.9.2
>>  does this not compile for your environment?
>
> Pardon?
>
> My message was not about compiling plexus-comiler-eclipse itself, but using 
> it to compile my very own stuff.
> As requested by Olivier Lamy I already opened a JIRA issue about my 
> objections, but thanks for your comment.
Thanks for the test project.
It's now fixed.
You can test the fix with compiler plugin 3.1-SNAPSHOT and with
plexus-compiler-eclipse 2.1-SNAPSHOT

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



--
Olivier Lamy
Talend: http://coders.talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: No compile errors with plexus-compiler-eclipse

2012-12-03 Thread Peter Palmreuther
Hello Olivier,

Am 03.12.2012 um 10:52 schrieb Olivier Lamy :

> Thanks for the test project.
> It's now fixed.
> You can test the fix with compiler plugin 3.1-SNAPSHOT and with
> plexus-compiler-eclipse 2.1-SNAPSHOT

Thanks a lot.

I was able to get maven-compiler-plugin:3.1-SNAPSHOT from Apache snapshot 
repository.
Sadly I can't find plexus-compiler-*:2.1-SNAPSHOT.
I've set my Nexus to proxy 
https://nexus.codehaus.org/content/repositories/snapshots/, but that seems to 
be the wrong location.
Can you point me to the correct repository?
-- 
Thanks in advance,
and best regards,

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



Re: No compile errors with plexus-compiler-eclipse

2012-12-04 Thread Olivier Lamy
2012/12/4 Peter Palmreuther :
> Hello Olivier,
>
> Am 03.12.2012 um 10:52 schrieb Olivier Lamy :
>
>> Thanks for the test project.
>> It's now fixed.
>> You can test the fix with compiler plugin 3.1-SNAPSHOT and with
>> plexus-compiler-eclipse 2.1-SNAPSHOT
>
> Thanks a lot.
>
> I was able to get maven-compiler-plugin:3.1-SNAPSHOT from Apache snapshot 
> repository.
> Sadly I can't find plexus-compiler-*:2.1-SNAPSHOT.
> I've set my Nexus to proxy 
> https://nexus.codehaus.org/content/repositories/snapshots/, but that seems to 
> be the wrong location.
> Can you point me to the correct repository?

Use: https://oss.sonatype.org/content/repositories/plexus-snapshots

> --
> Thanks in advance,
> and best regards,
>
> Peter
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>



--
Olivier Lamy
Talend: http://coders.talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: No compile errors with plexus-compiler-eclipse

2012-12-04 Thread Peter Palmreuther
Hello Olivier,

Am 04.12.2012 um 09:00 schrieb Olivier Lamy :

> 2012/12/4 Peter Palmreuther :
>> Hello Olivier,
>> 
>> Am 03.12.2012 um 10:52 schrieb Olivier Lamy :
>> 
>>> Thanks for the test project.
>>> It's now fixed.
>>> You can test the fix with compiler plugin 3.1-SNAPSHOT and with
>>> plexus-compiler-eclipse 2.1-SNAPSHOT
>> 
>> Thanks a lot.
>> 
>> I was able to get maven-compiler-plugin:3.1-SNAPSHOT from Apache snapshot 
>> repository.
>> Sadly I can't find plexus-compiler-*:2.1-SNAPSHOT.
>> I've set my Nexus to proxy 
>> https://nexus.codehaus.org/content/repositories/snapshots/, but that seems 
>> to be the wrong location.
>> Can you point me to the correct repository?
> 
> Use: https://oss.sonatype.org/content/repositories/plexus-snapshots

Thanks, seems to work. Both, the repository URL and the fix.
-- 
Regards,

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