diff options
author | 2021-02-10 19:03:47 +0000 | |
---|---|---|
committer | 2021-02-11 09:08:50 +0000 | |
commit | d7f6e96eb454f45df7ec571506d11ac2a5c7deac (patch) | |
tree | 032c788258a622e04a9a5bf6cbe97c8b05c92ab0 /tosca-controlloop/models | |
parent | cd3f004747d8513f34ded969d86cadad845505e7 (diff) |
Enable building of the tosca PoC code
At the moment, because the code in the tosca-controlloop directory is
not linked to the CLAMP pom, it is not built by the Jenkins jobs.
This commit makes a change to the pom.xml file on the tosca-poc branch
only so that the tosca-controlloop code is built.
The maven-invoker-plugin runs a build of the code in the
tosca-controlloop subdirectory by invoking a build of its pom.xml. The
output artifacts are placed in target/tosca-controlloop and do not
interfere in any way with the main CLAMP build.
However, if there are compile erors/test fails/maven errors in the
tosca-controlloop coode, the build wil and should fail.
Issue-ID: POLICY-2995
Change-Id: Ie4d3e3189af6afe0a046ab565a7cc2703afa503d
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'tosca-controlloop/models')
-rwxr-xr-x | tosca-controlloop/models/pom.xml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tosca-controlloop/models/pom.xml b/tosca-controlloop/models/pom.xml index 45e479849..2c5dd7d61 100755 --- a/tosca-controlloop/models/pom.xml +++ b/tosca-controlloop/models/pom.xml @@ -1,8 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- ============LICENSE_START======================================================= - Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. - Modifications Copyright (C) 2020 Nordix Foundation. + Copyright (C) 2021 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -26,7 +25,7 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.onap.policy.clamp</groupId> + <groupId>org.onap.policy.clamp.controlloop</groupId> <artifactId>controlloop</artifactId> <version>6.0.0-SNAPSHOT</version> </parent> |