Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Re: aspectj-users Digest, Vol 62, Issue 20

Are you installing both plugins completely or are you leaving some checkboxes unchecked? In what order are you installing them? First scala and then ajdt or the other way around??

Thanks!
Kevin

I am using eclipse 3.5.x
and both dev builds of AJDT and Scala
try these:
scala - http://www.scala-lang.org/scala-eclipse-plugin-nightly
ajdt dev - http://download.eclipse.org/tools/ajdt/35/dev/update

and I even have the JavaFX plugin working in this setup.

it would be interesting if you could create advice polyglot compatible:

in addition to:
before(int a) : pointcuta(a) { someCode(); }
why not this:
before(int a): pointcuta(a) MyClass.myMethod;

then you could provide advice in any jvm language.  I am not sure if that
would be the best syntax?

Mike

On Wed, Apr 21, 2010 at 8:32 AM, Kevin Shale <shale@xxxxxx> wrote:

AJDT 3.6 + Scala 2.8.0 (current RC versions) do not mix.
Earlier releases of both do not mix either.

I have been trying to get both plugins to work since Eclipse 3.4 with
different approaches, all of which have all failed.

This week I tried Helios M6 (3.6 = eclipse-jee-helios-M6-win32.zip) with
the newest Scala 2.8.0 RC plugin installed.
After installing the development AJDT 3.6 plugin at
http://download.eclipse.org/tools/ajdt/36/dev/update/
I still have conflicts (JDT-related).

Can anyone tell me if these two plugins can peacefully coexist inside the
same Eclipse installation and if so, how to configure this?

Thank you!



Back to the top