使用 eclipse 对 java 库进行版本编号

发布于 2024-11-07 06:09:30 字数 124 浏览 0 评论 0 原文

我正在开发一个连接SVN @sourceforge的库,我的IDE是Eclipse,那么如何设置版本编号?我想这是自动的,但是我如何使用 Eclipse 来做到这一点?


注意:我正在使用 Subclipse

I'm developing a library connected SVN @sourceforge, My IDE is Eclipse, so how to setup version numbering ? I guess it's automatic but how do I do that using Eclipse ?


NOTE: I'm using Subclipse

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

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

发布评论

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

评论(3

裂开嘴轻声笑有多痛 2024-11-14 06:09:30

我假设您正在使用 Java,并且这是一个新应用程序。在这种情况下,我建议使用 Maven 设置项目并使用发布插件 (http://maven.apache.org/plugins/maven-release-plugin/) 或版本插件 (http://mojo.codehaus.org /版本-maven-插件/)。以下是有关如何在设置 Maven 后开始使用版本插件的链接:

http://weblogs.java.net/blog/johnsmart/archive/2010/08/18/managing-version-numbers-maven-maven-versions-plugin

I assume you're using Java and this is a new application. In that case I recommend setting up your project with Maven and using the Release plugin (http://maven.apache.org/plugins/maven-release-plugin/) or the Versions plugin (http://mojo.codehaus.org/versions-maven-plugin/). Here is a link on how to get started with the Versions plugin once you have Maven set up:

http://weblogs.java.net/blog/johnsmart/archive/2010/08/18/managing-version-numbers-maven-maven-versions-plugin

羁客 2024-11-14 06:09:30

Subversion 对提交进行编号,从 1 开始,您无法对此进行任何更改。作为 svn 的插件,您可以使用 Subclipse 或 Subversive 作为版本号对于你的应用程序,你必须自己决定如何对其进行编号,并在 svn 存储库中创建代码副本,通常在 tag 文件夹中(而主要开发将在 tunk 中),带有版本号的目录。您可以使用您选择的 Eclipse SVN 插件的功能来完成此操作。

Subversion numbers the commits starting from one, nothing you could change about that. As plugin for svn you could use Subclipse or Subversive For the version numbers of your application you have to decide by yourself how to number it, and create a copy of the code in the svn repository, usually in the tag folder (while the main development would be in the tunk), a directory with the version number. You could do it with the features of whatever SVN plugin for eclipse you choose.

○闲身 2024-11-14 06:09:30

你的问题确实很模糊。当您说“版本编号”时,我假设您指的是 Subversion 修订编号,而不是应用程序版本编号(例如 1.0.0)。我还假设您询问如何将修订号放入文件本身的注释中。

在文件的标题中,您需要添加以下内容:

$LastChangedDate:$
$LastChangedRevision:$
$LastChangedBy:$

接下来在 ~/subversion/config 添加以下内容:

[miscellany]
enable-auto-props = yes

[auto-props]
* = svn:keywords=LastChangedDate LastChangedRevision LastChangedBy Id

最后在 Eclipse 中转到 Windows > >首选项>团队> SVN 并将“配置位置”设置为“使用目录”并选择 ~/subversion。

来源: http://islandlinux.org/howto/enable -auto-properties-auto-props-subversion-subclipse-eclipse

Your question is really vague. When you say "version numbering", I assume you mean Subversion revision numbering and not application version numbering (e.g., 1.0.0). And I'm also assuming that you're asking how to put revision numbers in comments of the file itself.

In the header of your files, you'll want to add the following:

$LastChangedDate:$
$LastChangedRevision:$
$LastChangedBy:$

Next in ~/subversion/config add the following:

[miscellany]
enable-auto-props = yes

[auto-props]
* = svn:keywords=LastChangedDate LastChangedRevision LastChangedBy Id

Finally in Eclipse go to Windows > Preferences > Team > SVN and set "Configuration location" to "Use directory" and select ~/subversion.

Source: http://islandlinux.org/howto/enable-auto-properties-auto-props-subversion-subclipse-eclipse

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文