Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: JiBX 1.1.6
-
Fix Version/s: None
-
Component/s: eclipse-plugin
-
Labels:None
-
Number of attachments :
Description
Our projects are held under source control (clearcase in our case).
The current JiBX eclipse plugin's configuration information is split into 2 places. The mapping folder location is held as part of the workspace and the project nature is held as part of the .project file.
This means that we can not import the project into eclipse as a single step - i.e. after importing the project we must explicitly set the mapping folder by hand.
Please can you store the JiBX configuration as part of the project's nature (or somewhere in the .project/.classpath files).
Perhaps storing it in the buildCommand (inside the .project) might be a better idea.
You already have:
<buildCommand>
<name>org.jibx.eclipse.JibxBindingBuilder</name>
<arguments>
</arguments>
</buildCommand>
so hopefully its not too much extra work to change it to:
<buildCommand>
<name>org.jibx.eclipse.JibxBindingBuilder</name>
<arguments>
<argument name="location">/path/to/dir</argument>
<argument name="verbose">true</argument>
</arguments>
</buildCommand>