Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » AJDT 1.4.1 for Eclipse 3.2 released (and more!)
AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #67975] Thu, 23 November 2006 17:31 Go to next message
Matt Chapman is currently offline Matt ChapmanFriend
Messages: 429
Registered: July 2009
Senior Member
We are pleased to announce, for the first time ever, the simultaneous
release of four versions of AJDT!

They are as follows:

AJDT 1.4.1 for Eclipse 3.2 - this is the latest stable release of AJDT
for the latest stable release of Eclipse. The release includes AspectJ
1.5.3, numerous bug fixes and new features in the areas of binary
weaving, refactoring and build automation.

AJDT 1.5M3 for Eclipse 3.3M3 - a milestone release with the same AJDT
functionality and AspectJ version as AJDT 1.4.1, supporting the latest
Eclipse milestone.

AJDT 1.3.3 for Eclipse 3.1 - an update to AJDT 1.3.2 incorporating
AspectJ 1.5.3.

AJDT 1.2.3 for Eclipse 3.0 - an update to AJDT 1.2.2 incorporating
AspectJ 1.5.3.

All releases are available from the AJDT Downloads page:

http://www.eclipse.org/ajdt/downloads/

The "What's New" page is here:

http://www.eclipse.org/ajdt/whatsnew141/

Note if upgrading from AJDT 1.4 to 1.4.1: the feature id changed from
"org.eclipse.aspectj" to "org.eclipse.ajdt", which results in Eclipse
treating them as different products. The recommended approach for
upgrading is to install 1.4.1 using the update site URL (from the
download page above) in the Eclipse Update Manager, and then use the
"Manage Configuration" dialog to disable the 1.4.0 feature.

Thanks to everyone for trying out the development builds and the
release candidate, and for taking the time to submit good quality bug
reports and create test programs.

Bugs raised by:
Ron Bodkin, Matt Chapman, Ralf Ebert, Matthew Ford, Helen Hawkins,
Sian January, Mik Kersten, Panagiotis Korros, Eugene Kuleshov, Michael
Moser, Nikita Salnikov-Tarnovski, Alex Savitsky, Thiago Souza, Matthew
Webster, and Steve Young.

Code commits and contributions from:
Matt Chapman, Matthew Ford, Helen Hawkins, Matthew Webster, and Steve Young.


Regards,

The AJDT Team.
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #68674 is a reply to message #67975] Thu, 30 November 2006 12:32 Go to previous messageGo to next message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
AJDT 1.4.1 for eclipse 3.2 (the Nov. 23 release) regularly hangs during
"Building workspace - Invoking AspectJ Builder in /<project>".

If I terminate that job (i.e. if I click the X to abort it) I get an
endless loop of:

----------------------------------------
java.lang.NullPointerException
at
org.aspectj.ajde.internal.CompilerAdapter.signalText(Compile rAdapter.java:223)
at
org.aspectj.ajde.internal.CompilerAdapter.requestCompileExit (CompilerAdapter.java:70)
at
org.aspectj.ajde.internal.AspectJBuildManager.abortBuild(Asp ectJBuildManager.java:122)
at
org.eclipse.ajdt.core.builder.AJBuilder.checkAndHandleCancel ation(AJBuilder.java:322)
at
org.eclipse.ajdt.core.builder.AJBuilder.waitForBuildCompleti on(AJBuilder.java:309)
at org.eclipse.ajdt.core.builder.AJBuilder.build(AJBuilder.java :252)
at
org.eclipse.core.internal.events.BuildManager$2.run(BuildMan ager.java:603)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:167)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:201)
at
org.eclipse.core.internal.events.BuildManager$1.run(BuildMan ager.java:230)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:233)
at
org.eclipse.core.internal.events.BuildManager.basicBuildLoop (BuildManager.java:252)
at
org.eclipse.core.internal.events.BuildManager.build(BuildMan ager.java:285)
at
org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBu ildJob.java:145)
at
org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJ ob.java:208)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
----------------------------------------

at which point I can only end eclipse. Every second time or so then even
the shutdown hangs and I have to take out the hammer (i.e. task manager)
to get things back to normal. Am I the only one with this? :-(

Michael
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #68705 is a reply to message #68674] Thu, 30 November 2006 13:25 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: hawkinsh.uk.ibm.com

Hi Barry,

I've not seen this problem myself, however, something very wrong has
happened
to your environment. The last two calls within CompilerAdapter are trying
to signal to the user that aspectj is unable to cancel the build process.
Its doing this because its unable to get hold of the static reference it
needs in order to cancel the build. The NPE itself is coming from the fact
that another
static reference is null. However, neither of these references should be
null.
They are set during initialization when the AJDT plugin starts up and are
never modified. Something has therefore gone wrong in this initialization.

I suggest you raise a bug for this and provide information about your
setup - which AJDT version you installed, how you installed it (update
site/zip file), did you upgrade from a previous ajdt version? If so, which
one was it? If you close all your existing projects and just install one
of the aspectj example projects - is this able to build? What information
is there in Help > About > AspectJ?

Thanks, Helen
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #68743 is a reply to message #68705] Thu, 30 November 2006 13:44 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: hawkinsh.uk.ibm.com

Sorry, I meant Michael :-)
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #68764 is a reply to message #68743] Thu, 30 November 2006 13:56 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
No problem ;-)

I just filed a bug -
https://bugs.eclipse.org/bugs/show_bug.cgi?id=166344.

Michael


"Helen Hawkins" <hawkinsh@uk.ibm.com> wrote in message
news:e522e85fa3e484ce9885fdaa48ee81ba$1@www.eclipse.org...
> Sorry, I meant Michael :-)
>
>
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #595456 is a reply to message #67975] Thu, 30 November 2006 12:32 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
AJDT 1.4.1 for eclipse 3.2 (the Nov. 23 release) regularly hangs during
"Building workspace - Invoking AspectJ Builder in /<project>".

If I terminate that job (i.e. if I click the X to abort it) I get an
endless loop of:

----------------------------------------
java.lang.NullPointerException
at
org.aspectj.ajde.internal.CompilerAdapter.signalText(Compile rAdapter.java:223)
at
org.aspectj.ajde.internal.CompilerAdapter.requestCompileExit (CompilerAdapter.java:70)
at
org.aspectj.ajde.internal.AspectJBuildManager.abortBuild(Asp ectJBuildManager.java:122)
at
org.eclipse.ajdt.core.builder.AJBuilder.checkAndHandleCancel ation(AJBuilder.java:322)
at
org.eclipse.ajdt.core.builder.AJBuilder.waitForBuildCompleti on(AJBuilder.java:309)
at org.eclipse.ajdt.core.builder.AJBuilder.build(AJBuilder.java :252)
at
org.eclipse.core.internal.events.BuildManager$2.run(BuildMan ager.java:603)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:167)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:201)
at
org.eclipse.core.internal.events.BuildManager$1.run(BuildMan ager.java:230)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:233)
at
org.eclipse.core.internal.events.BuildManager.basicBuildLoop (BuildManager.java:252)
at
org.eclipse.core.internal.events.BuildManager.build(BuildMan ager.java:285)
at
org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBu ildJob.java:145)
at
org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJ ob.java:208)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
----------------------------------------

at which point I can only end eclipse. Every second time or so then even
the shutdown hangs and I have to take out the hammer (i.e. task manager)
to get things back to normal. Am I the only one with this? :-(

Michael
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #595480 is a reply to message #68674] Thu, 30 November 2006 13:25 Go to previous message
Eclipse UserFriend
Originally posted by: hawkinsh.uk.ibm.com

Hi Barry,

I've not seen this problem myself, however, something very wrong has
happened
to your environment. The last two calls within CompilerAdapter are trying
to signal to the user that aspectj is unable to cancel the build process.
Its doing this because its unable to get hold of the static reference it
needs in order to cancel the build. The NPE itself is coming from the fact
that another
static reference is null. However, neither of these references should be
null.
They are set during initialization when the AJDT plugin starts up and are
never modified. Something has therefore gone wrong in this initialization.

I suggest you raise a bug for this and provide information about your
setup - which AJDT version you installed, how you installed it (update
site/zip file), did you upgrade from a previous ajdt version? If so, which
one was it? If you close all your existing projects and just install one
of the aspectj example projects - is this able to build? What information
is there in Help > About > AspectJ?

Thanks, Helen
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #595493 is a reply to message #68705] Thu, 30 November 2006 13:44 Go to previous message
Eclipse UserFriend
Originally posted by: hawkinsh.uk.ibm.com

Sorry, I meant Michael :-)
Re: AJDT 1.4.1 for Eclipse 3.2 released (and more!) [message #595496 is a reply to message #68743] Thu, 30 November 2006 13:56 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
No problem ;-)

I just filed a bug -
https://bugs.eclipse.org/bugs/show_bug.cgi?id=166344

Michael


"Helen Hawkins" <hawkinsh@uk.ibm.com> wrote in message
news:e522e85fa3e484ce9885fdaa48ee81ba$1@www.eclipse.org...
> Sorry, I meant Michael :-)
>
>
Previous Topic:Exporting "Deployable plugin with AspectJ support" yields plugin with aspects missing
Next Topic:producing a "deployable plugin with AspectJ support" fails
Goto Forum:
  


Current Time: Fri Apr 19 01:41:20 GMT 2024

Powered by FUDForum. Page generated in 0.01850 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top