Re: [hibernate-dev] Annotation Processors

2013-12-03 Thread Hardy Ferentschik
On 3 Jan 2013, at 13:29, Steve Ebersole wrote: >>> And in fact we get a slew of errors from running `javac -proc:only`. We >>> just happen to eat/ignore them. >> >> Sure, in some cases you might have to run the processors as part of the main >> compile. Still, imo nothing wrong with the way

Re: [hibernate-dev] Annotation Processors

2013-12-03 Thread Steve Ebersole
On Tue 03 Dec 2013 04:39:43 AM CST, Hardy Ferentschik wrote: > > On 2 Jan 2013, at 18:12, Steve Ebersole wrote: > >> Well technically it is not valid according to the javac spec, which was >> David's point (which I assume who you are referring to). > > What is against the spec? To run 'javac -pr

Re: [hibernate-dev] Annotation Processors

2013-12-03 Thread Hardy Ferentschik
On 2 Jan 2013, at 18:12, Steve Ebersole wrote: > Well technically it is not valid according to the javac spec, which was > David's point (which I assume who you are referring to). What is against the spec? To run 'javac -proc:only’? > And in fact we get a slew of errors from running `javac -

Re: [hibernate-dev] Annotation Processors

2013-12-02 Thread Steve Ebersole
Well technically it is not valid according to the javac spec, which was David's point (which I assume who you are referring to). And in fact we get a slew of errors from running `javac -proc:only`. We just happen to eat/ignore them. For example, take hibernate-core as it is the more "complex"

Re: [hibernate-dev] Annotation Processors

2013-12-02 Thread Hardy Ferentschik
On 2 Jan 2013, at 16:07, Steve Ebersole wrote: > So I am also working on reverting the change to use -proc:both with a > single compile phase. However, what we will end up with is still a > single -proc:only phase no matter how many processors are run. They > will output to a unified direc

Re: [hibernate-dev] Annotation Processors

2013-12-02 Thread Steve Ebersole
- Original Message - > From: "Steve Ebersole" <mailto:st...@hibernate.org> > <mailto:st...@hibernate.org <mailto:st...@hibernate.org>>> > To: "hibernate-dev" <mailto:hibernate-dev@li

Re: [hibernate-dev] Annotation Processors

2013-11-29 Thread Gunnar Morling
use testing w/o core? AFAIK, no, but >> correct me if I'm overlooking something. >> >> Brett Meyer >> Software Engineer >> Red Hat, Hibernate ORM >> >> - Original Message ----- >> From: "Steve Ebersole" >

Re: [hibernate-dev] Annotation Processors

2013-11-25 Thread Steve Ebersole
.org>> > To: "hibernate-dev" <mailto:hibernate-dev@lists.jboss.org>> > Sent: Friday, November 22, 2013 5:05:23 PM > Subject: [hibernate-dev] Annotation Processors > > I started today on removing the separate calls to javac to

Re: [hibernate-dev] Annotation Processors

2013-11-25 Thread Gunnar Morling
but correct me if > I'm overlooking something. > > Brett Meyer > Software Engineer > Red Hat, Hibernate ORM > > - Original Message - > From: "Steve Ebersole" > To: "hibernate-dev" > Sent: Friday, November 22, 2013 5:05:23 PM > Subject: [hiber

Re: [hibernate-dev] Annotation Processors

2013-11-25 Thread Brett Meyer
- Original Message - From: "Steve Ebersole" To: "hibernate-dev" Sent: Friday, November 22, 2013 5:05:23 PM Subject: [hibernate-dev] Annotation Processors I started today on removing the separate calls to javac to execute Annotation Processors in the Hibernate ORM build. F

[hibernate-dev] Annotation Processors

2013-11-22 Thread Steve Ebersole
I started today on removing the separate calls to javac to execute Annotation Processors in the Hibernate ORM build. From Gradle it is working fine. However when I try to enable Annotation Processing in IntelliJ, it complains about the "module cycle" between hibernate-core and hibernate-testi