在软件项目中,有版本号,如何在 Eclipse 中自动为我的 Java 项目执行此操作?
在软件项目中,有版本号,如何在 Eclipse 中自动为我的 Java 项目执行此操作?
我正在使用 Subclipse,它可以帮助我设置应用程序版本号吗?
In software projects there are version numbers how do I do that for my Java project at Eclipse in automatic way ?
I'm using Subclipse will it help me set the application version number ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Maven 等构建工具来实现此目的。
You can use build tools like Maven to achieve this.
你的问题有点模糊,
每当你对存储库进行“提交”时,都会生成版本号(或用颠覆术语“更改集”)。如果您希望生成一个更简单的版本号(有时称为“版本”号(即版本 1.0、版本 1.1 等)),您可以通过生成一个“标签”来实现,该“标签”只是给定更改集的副本并给定标签(请参阅标签)。在包资源管理器中右键单击您的项目时会发现“Team => Branch/Tag...”项目。
如果您不熟悉这种做法,我建议您创建一个“假”或虚拟项目。 /repository 来实际练习这个。
Your question is a little vague
Version numbers(or in subversion parlance 'change sets') are generated whenever you make a 'commit' to the repository. If you wish to produce a simpler version number(sometimes called a 'release' number(i.e. release 1.0, release 1.1 etc) you can do this by generating a 'tag' which is merely a copy of a given change set and given a label(see tags). In Eclipse you can do this with the 'Team => Branch/Tag...' item found when you right click on your project in the package explorer.
If you're not familiar with the practice, I would suggest that you create a 'fake' or dummy project/repository to actually practice this on.
我建议使用 Maven 或 Gradle 等项目管理工具来构建您的应用程序。这些构建工具将提供版本号。
I recommend to use a project management tool like Maven or Gradle to build your application. These build tools will provide a version number.