Difference between revisions of "VLMa/Documentation:Build"
Jump to navigation
Jump to search
(New page: = VLMa build HOWTO = == Requirements == You need the following softwares to build VLMa: * A Java SDK version 5.0 or higher You can check whether your Java installation is suitable by c...) |
m |
||
Line 26: | Line 26: | ||
Maven will download VLMa dependencies and build the project according to the configuration located in the pom.xml files. | Maven will download VLMa dependencies and build the project according to the configuration located in the pom.xml files. | ||
+ | |||
+ | == Internal links == | ||
+ | |||
+ | [[VLMa/Documentation | VLMa documentation index]] |
Revision as of 16:32, 3 February 2009
VLMa build HOWTO
Requirements
You need the following softwares to build VLMa:
- A Java SDK version 5.0 or higher
You can check whether your Java installation is suitable by checking that the javac executable is available and that the version is higher than 5.0 (javac -version).
VLMa uses Maven as a build system. If you are not familiar with this tool, check the 5 minutes guide.
- VLMa source tree
You can either download the latest tarballs at http://www.videolan.org/vlma/download.html and extract them or check out the development tree using Git
$ git clone git://git.videolan.org/vlma.git
Build
Once you have downloaded VLMa source code, change directory to the root of the project and type:
$ mvn install
Maven will download VLMa dependencies and build the project according to the configuration located in the pom.xml files.