maven-glassfish-plugin 的源代码在哪里可以下载?
当尝试从 http://maven-glassfish-plugin.java 获取它们时.net/svn/maven-glassfish-plugin,我得到的都是 svn OPTIONS 200 OK 错误,表明 SVN 服务器不在我认为的位置。那么,我怎样才能获得源代码来进行我需要的修改呢?
When trying to get them from http://maven-glassfish-plugin.java.net/svn/maven-glassfish-plugin, all I get are svn OPTIONS 200 OK error, indicating that SVN server is not where I think it is. So, how can I get the sources to do the modifications I need ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是有关 Java.net 项目的 Subversion 存储库访问的提示。项目页面发布的SVN URL(HTTP/HTTPS)有效;只是它们不可浏览。
例如,Maven-Glassfish-plugin 的 SVN 存储库 URL 列为
http://java.net/projects/maven-glassfish-plugin/sources
。在浏览器中浏览到此位置将不会得到任何结果。但是如果你执行 svn log http://java.net/projects/maven- glassfish-plugin/sources 您将看到可以访问存储库;其他 SVN 命令也将起作用。希望这有帮助。
Here's a tip about the Subversion repository access for projects at Java.net. The SVN URLs (in HTTP/HTTPS) published on the project pages are valid; it's just that they are not browseable.
For instance, the Maven-Glassfish-plugin has it's SVN repository URL listed as
http://java.net/projects/maven-glassfish-plugin/sources
. Browsing to this location in a browser will get you nothing.But if you execute
svn log http://java.net/projects/maven-glassfish-plugin/sources
you will see that you can access the repository; other SVN commands will also work. Hope this helps.