Project

General

Profile

Actions

Build components from sources

This section describes how to compile and build component from source files.

Most of the projects are built and maintained using Maven and versioning using SVN. Therefore, you should be familiar with the tools below: Requires the following software to be installed in the build environment: Before continue, please prepare the following information: For demonstrate purpose, we will build the following module: Steps:
  1. checkout the project from SVN
    $ svn co http://192.168.2.13:50000/svn/qconnector/tags/soap-adaptor_0_5_2_SNAPSHOT/soap-adaptor
    
  2. cd to the checkout-ed folder, soap-adaptor
    $ cd soap-adaptor
    
  3. execute the maven command to compile and build the module:
    $ mvn clean package
    
    1. You could skip the unit tests but strongly not recommended:
      $ mvn -Dmaven.test.skip=true clean package
      
  4. if no error, the binary file of the module can be found in target/{module name}-{module version}.jar, e.g. soapadaptor-0.5.2-SNAPSHOT.jar
  5. done

Updated by chin-yeh over 13 years ago · 4 revisions