how to compile code from svn into jar file?

折月煮酒 提交于 2019-12-24 05:35:24

问题


I found HTMLUnit is useful for me,but the files are too old. So I use svn co https://htmlunit.svn.sourceforge.net/svnroot/htmlunit htmlunit to check the code,But I don't know how to use them.

Is there somebody can tell me how to compile them?


回答1:


I see you have very little knowledge of Subversion.

I could link you to lots of verbose documentation, but let's make it quick and easy: what you downloaded is the whole repository, containing lots of redundant code, majorly the three canonical directories branches tags trunk.

In order to obtain usable code, you either download a stable (tag) version or unstable version (trunk). Advantage of trunk over tag is that it mostly contains new features, but tags are generally stable.

Try to get the following URL: https://htmlunit.svn.sourceforge.net/svnroot/htmlunit/tags/HtmlUnit-2.8/, then you could try ant to build (I'm no Java expert, does the package have an ant script?)




回答2:


You don't need to take the detour of building it from sources yourself. The latest version is 2.8, and it's readily available from the Maven central repository. If you're not using a dependency manager, just grab the jar from here:

http://repo2.maven.org/maven2/net/sourceforge/htmlunit/htmlunit/2.8/




回答3:


Check out the projects instructions on how to get and build the latest version ! http://htmlunit.sourceforge.net/gettingLatestCode.html.




回答4:


It seems it ships as a collection of submodules, each with its own build system (some of them maven, some ant).

The latest release dates back to August 2010, doesn't seem to be that old, but if you're aware of improvements you need which are available only in later versions I suggest you look at their CI server, which provides already the artifacts from the latest build.



来源:https://stackoverflow.com/questions/5309667/how-to-compile-code-from-svn-into-jar-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!