diff options
author | Victor Morales <victor.morales@intel.com> | 2018-01-22 10:07:28 -0800 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-01-22 10:07:28 -0800 |
commit | be84471233b3067e57cf3d9dbbb0154b60eb21f2 (patch) | |
tree | ca86f933f6ef2ece02dc042cfdcc6edf586ed33e /bootstrap/vagrant-onap/lib/functions | |
parent | 8fa101a3dd2edf8e432b9447a886cfb583100fb0 (diff) |
Update AAI instructions
The AAI instructions were using old variables resulting in some
execution errors. This change removes that old variables and
updates the methods required for the service.
Change-Id: I14f8e598eb8a5fd915b63135c1145ea25f6bcad0
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-18
Diffstat (limited to 'bootstrap/vagrant-onap/lib/functions')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/lib/functions b/bootstrap/vagrant-onap/lib/functions index 47966f1b2..ba128d965 100755 --- a/bootstrap/vagrant-onap/lib/functions +++ b/bootstrap/vagrant-onap/lib/functions @@ -330,7 +330,7 @@ function build_docker_image { install_maven # Cleanup external repo sed -i 's|${docker.push.registry}/||g' pom.xml - local docker_build="mvn clean package docker:build" + local docker_build="mvn clean package docker:build -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true" if [ $profile ]; then docker_build+=" -P $profile" fi |