diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-08-01 04:02:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-01 04:02:41 +0000 |
commit | 995ef7ca5f69fedda522f6815dc84b4dc9483bff (patch) | |
tree | 3faf902d3e6d49dbc1204cda7cf99a8f6be70df7 /docs/index.rst | |
parent | 563d378fa1c13871c865894ec4b00d63c508ddb5 (diff) | |
parent | d6a1312044f3c62d90146b3ec5f4d168c22a3fb2 (diff) |
Merge "update the build info in so/libs"
Diffstat (limited to 'docs/index.rst')
-rw-r--r-- | docs/index.rst | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst index a477057..5ef185e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,6 +1,6 @@ .. This work is licensed under a Creative Commons Attribution 4.0 International License. .. http://creativecommons.org/licenses/by/4.0 -.. Copyright 2017 Huawei Technologies Co., Ltd. +.. Copyright 2018 Huawei Technologies Co., Ltd. ONAP SO/libs Documentation =========================== @@ -30,3 +30,25 @@ ONAP SO/libs Documentation **Swift client** : Swift client provides functionalities for object storage in OpenStack. Swift is ideal for storing unstructured data that can grow without bound. + +Building SO/libs +=================== + +Build software with unit tests +------------------------------ + +.. code-block:: bash + + cd $HOME/onap/workspace/SO/libs + + $HOME/onap/apache-maven-3.3.9/bin/mvn -s $HOME/onap/.m2/settings.xml clean install + + +Build software without unit tests +---------------------------------- + +.. code-block:: bash + + cd $HOME/onap/workspace/SO/libs + + $HOME/onap/apache-maven-3.3.9/bin/mvn -s $HOME/onap/.m2/settings.xml -DskipTests -Dmaven.test.skip=true clean install |