Well.. I must say I am not sure I understood the questions fully, but I give it a try...
Hi,
Its regarding identifiyng the plugin name. We are using Maven in my project. i have small doubt.
  I need to identify the "aspectj-maven-plugin" if we are using in our project. 
if it is found then we need to project nature according to that.
This does the trick (at least on a descent system) find . -name "pom.xml" | xargs "grep aspectj-maven-plugin"
All the poms containing the plugin should then be found.
then add the xml below to your build section of the poms found, and all your aspectJ projects now should have aspectJ nature in eclipse.

     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-eclipse-plugin</artifactId>
       <configuration>
         <additionalProjectnatures>
           <projectnature>org.eclipse.ajdt.ui.ajnature</projectnature>
         </additionalProjectnatures>
         <buildcommands>
           <buildcommand>org.eclipse.ajdt.core.ajbuilder</buildcommand>
         </buildcommands>
       </configuration>
     </plugin>

  Can you please let me know where i can find that information in the source 
code. or how to do it?
  This is very urgent.
Thanks in advance. Regards,
  pulla reddy.R

---------------------------------
Need Mail bonding?
Go to the Yahoo! Mail Q&A for great tips from Yahoo! Answers users.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to