diff options
author | liamfallon <liam.fallon@est.tech> | 2022-12-14 11:38:26 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-12-14 11:57:05 +0000 |
commit | a98708667e2bb38c4188af7782207e95f7bfbd68 (patch) | |
tree | 2f49225ef4d7914d98a1cf933e70107e2c3b3edc | |
parent | 2c23640cfe4f25604dcb7d3d62018fb35eb1801a (diff) |
Add explicit import for oparent dependencies
This change is required to explicitly import oparent dependencies to
avoid self referencing in oparent.
Issue-ID: POLICY-4482
Change-Id: I5155c44775880edefb15422aa85bda06fd391796
Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r-- | pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -42,6 +42,18 @@ <module>integration</module> </modules> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.onap.oparent</groupId> + <artifactId>dependencies</artifactId> + <version>${oparent.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + <build> <pluginManagement> <plugins> |