Serena Dimensions 是否支持 Maven 插件或 Ant 任务?

发布于 2024-08-27 17:04:55 字数 159 浏览 10 评论 0原文

关于 ANT 或 Maven 是否支持 Dimensions(不支持 PVCS)存在很多相互矛盾的说法。有实际操作经验的人是否知道 Dimensions 是否存在可靠的、生产级/现成的插件或任务?我基本上只需要能够使用 Maven(最好)或 Ant 来获取 Dimensions 中的一些修订并从中构建。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒绊 2024-09-03 17:04:55

据我所知,SCM 插件不支持 Dimensions。也许有一个 Ant 任务可以从 AntRun 调用,但我找不到它。

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.

一页 2024-09-03 17:04:55

我正在开发这个,http://code.google.com/p/mvn -scm-plugin-dimensions/ 我希望几天后我能支持结账、签入、标签、状态、更新,也许还有变更日志。

问候。

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.

怀里藏娇 2024-09-03 17:04:55

我使用这样的 Ant 任务来提取我的项目的最新源代码:

<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=""FWI MYPROJ:MAIN /EOL=UNCHANGED /USER_DIRECTORY=\"${project.dir}"""/>
    </exec>
</target>

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=""FWI MYPROJ:MAIN /EOL=UNCHANGED /USER_DIRECTORY=\"${project.dir}"""/>
    </exec>
</target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文