Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] Help required wrt Builders ....


You might try posting this question on the platform-core-dev@xxxxxxxxxxx  mailing list.  That list should contains users who are more familiar with org.eclipse.core.resources.* resources like the extension point you are referring to.

Brian Bauman
    IBM Software Group - Austin, TX
    Eclipse Committer
    baumanbr@xxxxxxxxxx
    (512) 838 -2938 (T/L 678-2938)



From: Sriram Hariharasubramanian <Sriram_H@xxxxxxxxxxx>
To: "'Eclipse PDE general developers list.'" <pde-dev@xxxxxxxxxxx>
Date: 11/13/2007 06:37 AM
Subject: [pde-dev] Help required wrt Builders ....





Hi All,
 
I am currently facing an issue in implementing builders.
 
The snippet from the plugin.xml is
 
<plugin>
<extension
         id="jcvBuilder"
         name="JCV Builder"
         point="org.eclipse.core.resources.builders">
      <builder
            hasNature="false">
         <run
               class="jcv.builder.JcvBuilder">
         </run>
      </builder>
   </extension>
   <extension
         id="jcvProblems"
         name="JCV Problem"
         point="org.eclipse.core.resources.markers">
      <super
            type="org.eclipse.core.resources.problemmarker">
      </super>
      <persistent
            value="false">
      </persistent>
</extension>
.. .. ..
... .. ..
</plugin>
 
Inside my activator (plugin) class I have defined the following –
 
            // The plug-in ID
            public static final String PLUGIN_ID = "JCV_PLUGIN";
 
            // The builder ID
            public static final String BUILDER_ID = "JCV_PLUGIN.jcvBuilder";
 
I understand that the builder id is the concatenation of the plug-in ID and the builder ID. In my case JCV_PLUGIN and jcvBuilder respectively.
 
On testing I found that my builder is not listed under the <buildCommand> tag inside the .project file for the corresponding folder.
After manually adding the entry for my builder in the project file; I get the error message I get “Skipping builder JCV_PLUGIN.jcvBuilder for project xxxx. Either the builder is missing from the install, or it belongs to a project nature that is missing or disabled.”
 
The snippet which I added is –
<buildCommand>
            <name>JCV_PLUGIN.jcvBuilder</name>
            <arguments>
            </arguments>
</buildCommand>
 
I understand that it is due to this problem the builder was not listed in the project file.
 
Please let know if I am missing out on anything.
 
Thanking you in advance!!!
 
Thanks & Regards,
Sriram
 

**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Further, you are not to copy, disclose, or distribute this e-mail or its contents to any other person and any such actions are unlawful. This e-mail may contain viruses. Infosys has taken every reasonable precaution to minimize this risk, but is not liable for any damage you may sustain as a result of any virus in this e-mail. You should carry out your own virus checks before opening the e-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***

_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-dev


Back to the top