commit | 5688c492c5e6760a99e1fb9853b891661665bb36 | [log] [tgz] |
---|---|---|
author | liamfallon <liam.fallon@est.tech> | Wed Dec 14 09:59:46 2022 +0000 |
committer | liamfallon <liam.fallon@est.tech> | Wed Dec 14 11:50:16 2022 +0000 |
tree | a10dcd83628cc94435440365516b5849973d9476 | |
parent | 1777b660036ec994ef5874d3eb567def38541f96 [diff] |
Remove self references in oparent This commit removes self references in oparent. These self references mean that the version of an import in oparent is set to the value of project.version, which is the value of project.version in the project importing oparent, not the actual version of oparent. This causes all sorts of side effects. The down side is that users of oparent will now have to explicitly import the oparent dependencies, doing somethling like: <dependencyManagement> <dependencies> <dependency> <groupId>org.onap.oparent</groupId> <artifactId>dependencies</artifactId> <version><Your oparent version></version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> Issue-ID: POLICY-4482 Change-Id: I573bffb0656209413fafc3800c3bcbdb616beecd Signed-off-by: liamfallon <liam.fallon@est.tech>
ONAP O-Parent provides common default settings for all the projects participating in simultaneous release.
All projects participating in simultaneous release will inherit defaults from O-Parent.
elalto branch 2.X will continue to be used for Java 8/Java 9 dependencies master branch 3.X will be used for JAva 11 dependencies
Projects should refer to either the 2.X release Java 8/9 or 3.X release as appropriate.