blob: 4cd08cf0dab4e99af8f915ae41a895003451563e [file] [log] [blame]
ramvermaaf74a622018-07-31 18:25:39 +01001//
2// ============LICENSE_START=======================================================
3// Copyright (C) 2016-2018 Ericsson. All rights reserved.
4// ================================================================================
5// This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE
6// Full license text at https://creativecommons.org/licenses/by/4.0/legalcode
7//
8// SPDX-License-Identifier: CC-BY-4.0
9// ============LICENSE_END=========================================================
10//
11// @author Sven van der Meer (sven.van.der.meer@ericsson.com)
12//
13
14== Build with all Components
15
16A standard APEX build will not build all components.
17Some parts are for specific deployments, only.
18Use Maven to for a standard build with __all__ components.
19
20[IMPORTANT]
21.Might require specific software
22====
23When building all components, some modules require specific software installed on the build machine.
24====
25
26[width="100%",options="header",cols="5a,5a"]
27|====================
28| Unix, Cygwin | Windows
29|
30[source%nowrap,sh,numbered]
31----
32# cd /usr/local/src/apex
33# mvn clean install -DapexAll
34----
35|
36[source%nowrap,bat,numbered]
37----
38>c:
39>cd \dev\apex
40>mvn clean install -DapexAll
41----
42|====================
43