Question

There is a lot of contradicting statements regarding whether ANT or Maven support Dimensions (NOT PVCS). Does anyone with real hands on experience know if there exists a reliable, production grade/ready plugin or task for Dimensions? I basically just need to be able to use Maven (preferably) or Ant to grab some revision in Dimensions and build from it.

Was it helpful?

Solution

To my knowledge, Dimensions is not supported by the SCM plugin. Maybe there is an Ant Task that you could call from AntRun but I couldn't find it.

OTHER TIPS

im developing this, http://code.google.com/p/mvn-scm-plugin-dimensions/ i hope in a few days i have support for checkout, checkin, tag, status, update and maybe changelog.

Regards.

I use an Ant task like this to pull the latest source for my project:

<target name="get_source" description='execute Serena Dimensions and get latest code.'>
    <exec executable="DMCLI">
        <arg value="-cmd"/>
        <!-- EOL=UNCHANGED is important for FWI command to avoid corrupting image files -->
        <arg value="&quot;FWI MYPROJ:MAIN /EOL=UNCHANGED /USER_DIRECTORY=\&quot;${project.dir}&quot;&quot;"/>
    </exec>
</target>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top