aboutsummaryrefslogtreecommitdiffstats
path: root/oparent
AgeCommit message (Collapse)AuthorFilesLines
2022-12-14Update snapshots on oparentliamfallon1-2/+2
Issue-ID: POLICY-4482 Change-Id: Ia718ec163277b8285a80d97ae69045312465fb14 Signed-off-by: liamfallon <liam.fallon@est.tech>
2022-12-14Remove self references in oparentliamfallon1-14/+2
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>
2022-12-13Update references in oparent for releaseliamfallon1-3/+3
Issue-ID: POLICY-4482 Change-Id: I1e25c27e248f674ade6a403089aa8ffefab9b74b Signed-off-by: liamfallon <liam.fallon@est.tech>
2022-12-13Upgrade dependency versions in oparentliamfallon1-2/+4
Tidied up the version handling and took the latest versions for oparent dependencies. Issue-ID: POLICY-4482 Signed-off-by: liamfallon <liam.fallon@est.tech> Change-Id: Ie7c9a863d3050a0a57b5ba03a8625f85322dad3a
2022-08-31Bump snapshot version on oparentliamfallon1-3/+3
Issue-ID: INT-2036 Change-Id: Iba1603dfd2f988800ffe58af31b2aa626c5407e4 Signed-off-by: liamfallon <liam.fallon@est.tech>
2022-04-22Bump oparent to 3.3.2-SNAPSHOTliamfallon1-3/+3
Issue-ID: POLICY-4070 Change-Id: I47d0a3f1786f12b381842dc678e9edfc58d07dd7 Signed-off-by: liamfallon <liam.fallon@est.tech>
2022-04-05Bump master version to 3.3.1-SNAPSHOTToineSiebelink1-3/+3
Issue-ID: CPS-475 Signed-off-by: ToineSiebelink <toine.siebelink@est.tech> Change-Id: Id8804d5c84143a21575605cc12b181ff25acd392
2021-10-26Bump master to 3.3.0-SNAPSHOTDragosh, Pamela (pd1248)1-3/+3
For Jakarta release. Issue-ID: INT-1999 Change-Id: Id7af7ad297c0c625002fbb16c4340b8677a5a88a Signed-off-by: Dragosh, Pamela (pd1248) <pd1248@att.com>
2021-07-29Bump oparent to 3.2.2Jim Hahn1-3/+3
Issue-ID: INT-1948 Change-Id: I63de3f84b774dd95cf760e602ae1da286dadb5c6 Signed-off-by: Jim Hahn <jrh3@att.com>
2021-06-17Update Checkstyle to version 8.43liamfallon1-1/+1
The checkstyle plugin in the 2021-03 version of Eclipse defaults to version 8.43 of Checkstyle. This version of Checkstyle removes the "scope" keyword from the JavadocMethod module, because it is redundant, so the ONAP checkstyle onap-kava-style.xml file breaks. This review: - Removes the "scope" property from the "JavadocMethod" module, where it is redundant anyhow (scope applies on the "MissingJavadocMethod" module - Removes the "scope" property from the "MissingJavadocMethod" because it defaults to the correct value for ONAP, that is "public" Issue-ID: POLICY-3206 Change-Id: I62736ec812595929392b5eef0658acb77365c52a Signed-off-by: liamfallon <liam.fallon@est.tech>
2021-01-26Bump oparent 3.2.1-SNAPSHOTPamela Dragosh1-3/+3
Issue-ID: INT-1711 Change-Id: Ic1fc0e1db56dd673d68dae0ca2f02fbd928b9be1 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-11-03Upgrade latest dependenciesPamela Dragosh1-1/+1
Tomcat still has an issue, but this is the latest so we'll clear earlier issues out and wait for a fix. tomcat-embed-core-9.0.39 : CVE-2020-13943 Issue-ID: INT-1766 Change-Id: Idd65f85a5170ed1ed4f1d2dd43877aa738bf7834 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-10-29Bump master to 3.2.0-SNAPSHOTPamela Dragosh1-3/+3
Issue-ID: INT-1756 Change-Id: I383c3c3f2690ac904d33537946f65f508adabd09 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-07-02Bump oparent to version 3.1.1-SNAPSHOTputhuparambil.aditya1-3/+4
Issue-ID: INT-1486 Signed-off-by: puthuparambil.aditya <aditya.puthuparambil@bell.ca> Change-Id: Ie1290435148cabf85b50e66d6c850d7a5676234c
2020-06-26Add CVE ProfilePamela Dragosh1-0/+20
Profile optionally available for checking CVE. Issue-ID: INT-1489 Change-Id: I176f8dd0d3cc11910251374aac17803291160a6f Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-06-19Upgrade checkstyle to version 8.32 Google styleliamfallon1-5/+5
This review upgrades the checckstyle in ONAP to version 8.32, and re-aligns the ONAP style definition with the 8.32 version of the Google style guide. This change was triggered by incompatible changes in checkstyle version 8.32. Checkstyle has removed the directives "allowMissingThrowsTag" and "allowThrowsTagsForSubclasses". These directives controlled whether the existence of @Throws tags should be checked or not. In ONAP, these directives were set to "don't check". The default behaviour in checkstyle now is not to check @Throws javadoc tags for existence. See: https://github.com/checkstyle/checkstyle/issues/7329 Issue-ID: INT-1271 Change-Id: Iaabbf05b6aaf244388f654aa4e965da3d3a4f4e9 Signed-off-by: liamfallon <liam.fallon@est.tech>
2020-04-20Bump oparent master to 3.1.0Pamela Dragosh1-3/+3
Frankfurt is stil 3.0.2 Issue-ID: INT-1540 Change-Id: I8fe54b509939cc0df37f931638b50b9ffc47bdde Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-03-12Bump oparent patch 3.0.2Pamela Dragosh1-3/+3
3.0.1 is released, bumping to 3.0.2 Issue-ID: INT-1481 Change-Id: I5b46802e9f5af688cfb368a96c166278fd28cf5b Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2020-03-09change configuration to oparent's checkstyle pluginJohn J. Franey1-2/+6
Issue-ID: INT-1479 Signed-off-by: John J. Franey <John.Franey@att.com> Change-Id: I28dfa795a5502dec6c6f617f376826a8b3cdad03
2020-03-09bump version to next release snapshotJohn J. Franey1-3/+3
Issue-ID: INT-1479 Signed-off-by: John J. Franey <John.Franey@att.com> Change-Id: I361c2039fd58867436d6b82f631a341b9c879130
2020-01-09Update sonar configurationPamela Dragosh1-6/+5
Sonarcloud upgrade exposed missing configuration variable. Also removed deprecated properties Used properties for versions of plugins Upgraded all the plugins to the latest Issue-ID: INT-1411 Change-Id: I75cb459f387a32230920987913d174dbc751e9f2 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2019-12-06Upgrade oparent to checkstyle 8.27liamfallon1-4/+16
Checkstyle 8.27 introduces incompatible changes in the checkstyle rule definition xml file. The latest Eclipse checkstyle plugin (version 8.26) uses this new checkstyle xml rule format. This change brings in the checkstyle 8.27 rule formats into oparent. Issue-ID: INT-1395 Change-Id: I453120e5cc95fa2e30a5d2f24083fd030e960a01 Signed-off-by: liamfallon <liam.fallon@est.tech>
2019-11-18Revert "update version of checkstyle for latest google style and jdk 8"Brian Freeman1-54/+0
This reverts commit 6a2d8c71aa39a6f47a683c38267c07cd9a00dfeb. Revert until we fix the jjb verify and master Issue-ID: INT-1271 Change-Id: I11da29bee4f17c40ae96ab647d1517572a20b864 Signed-off-by: Brian Freeman <bf1936@att.com>
2019-11-18update version of checkstyle for latest google style and jdk 8John J. Franey1-0/+54
Upgrade to use the latest google style (plus onap style). This latest style adds rules for jdk 8 source level. Upgrade the version of checkstyle to 8.24. The latest google style rules are compatible with 8.24 and later. Upgrade checkstyle maven plugin to 3.1.0 (from 2.17). This jdk8 version of checkstyle is active only when the build-time java runtime is jdk8 or later, otherwise, the original checkstyle is active. Issue-ID: INT-1271 Change-Id: Ib190b39efc5a6028ab4874301e6a813f0a36b138 Signed-off-by: John J. Franey <john.franey@att.com>
2019-11-01Uprev to 3.0.0 for Java 11Brian Freeman1-3/+4
Update copyright modifications Issue-ID: INT-1352 Change-Id: I7a574c52398990ac38e6e5da287dc424933babfb Signed-off-by: Brian Freeman <bf1936@att.com>
2019-09-04Bump oparent to 2.2.0-SNAPSHOTPamela Dragosh1-3/+3
After release 2.1.0, bump the version. Followed same as this review: https://gerrit.onap.org/r/c/oparent/+/90407 Issue-ID: INT-1233 Change-Id: Ie139ab223870986d9dfcc443a18af2446884778e Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2019-06-24Version bump oparent master to 2.1.0-SNAPSHOTGary Wu1-3/+3
Issue-ID: INT-1055 Signed-off-by: Yang Xu <yang.xu@futurewei.com> Change-Id: Ia06ecf1de96fd1712965e480b99ad7a40499dce7
2019-04-30Version bump oparentdublinGary Wu1-3/+3
Change-Id: Ida107f54d36da2bc34bce07cb25b3d708ebc66b7 Issue-ID: INT-1055 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2019-03-08Bump major version for new global staging job4.0.0-ONAP2.0.0Gary Wu1-3/+3
The changes required to support LF's new global staging job template are breaking changes for downstream projects; bumping the major version number to reflect the impact. Change-Id: I7bdc1862122c7066d4f875e3d414db58398b7eb8 Issue-ID: CIMAN-234 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2019-02-07Fix checkstyle build and xmlPamela Dragosh1-1/+1
The XML for onap-java-code style has a bug identified by Eclipse. The maxLineLength field is not allowed. In addition, not sure how any jobs work already, the sourceDirectory appends and extra "src/main/java" to the path so some builds don't always find the correct source files to generate warnings. The plugin is a bit flaky and sometimes seems to find the java files, while other times it does not. So some checkstyle warnings are not generated. Change-Id: Ia07065a0d0df1429643680cb5bd70b5ec13bebde Issue-ID: TSC-71 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
2018-11-13Version bump oparent to 1.2.3-SNAPSHOTGary Wu1-3/+3
Change-Id: Ia590d91f493cf5ac7d958abefe6eb427713060e5 Issue-ID: INT-720 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-10-03Remove hard-coding of ONAP nexus reposGary Wu1-46/+0
Remove hard-coding of ONAP nexus repos so that they can be specified in the setting.xml for each build environment instead. Change-Id: Ieea666eac1626c0d0f64e7db786aa73851c22cfe Issue-ID: INT-678 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-09-18Version bump oparent to 1.2.2-SNAPSHOTGary Wu1-3/+3
Change-Id: I7fb32303220724ad410869d598822160272e49e3 Issue-ID: INT-656 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-08-29Bump JaCoCo version to 0.8.2Piotr Bochenski1-1/+1
Currently, oparent uses JaCoCo version that is more than 2 years old. 0.8.2 version fixes at least following issues: * enable building on JDK10 * Kotlin language support Change-Id: Ic9fa8e80ffb01fe7d5176fb670a7b6f7a5bf6117 Issue-ID: INT-639 Signed-off-by: Piotr Bochenski <piotr.bochenski@nokia.com>
2018-08-24Version bump oparent to 1.2.1-SNAPSHOTGary Wu1-3/+3
Change-Id: Ic6c2875ccaab4c31c2db81f9a08845dfb9812894 Issue-ID: INT-619 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-08-24Bump surefire version to 2.22.01.2.0Gary Wu1-2/+2
Change-Id: I2b2b222ecbb3c8d23a240e3cd82b8002329ef204 Issue-ID: INT-587 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-08-23Add dependencyManagement sectionsPamela Dragosh1-0/+11
Add depedencyManagement sub-module that declare dependecies. And we are adding a submodule that declares. Change-Id: I57dd301968cd9dbb55c79ab10df6de0cda6a21a5 Issue-ID: INT-619 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com> Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-06-07Bump oparent master to 1.2.0-SNAPSHOTGary Wu1-2/+2
Change-Id: Ib0ade741e66762822cfac67fd2f010bec9e66f89 Issue-ID: INT-506 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-05-09Bump oparent version2.0.0-ONAPbeijing2.0.0-ONAPGary Wu1-2/+2
Change-Id: Icb213b4513af3dc032463ba0fa66fbdd57a2e081 Issue-ID: INT-440 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-03-09Bump oparent versionGary Wu1-2/+2
Issue-ID: INT-440 Change-Id: Ifafff74f10336ac820576a3311c33e92f88d4307 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-02-05Add sonar-maven-plugin versionJessica Wagantall1-1/+1
Use Sonar plugin version 3.2 Change-Id: Id2ec0e7bd949b25b6c8e4a8c5d65dd9ddecaa5c1 Issue-ID: CIMAN-65 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-02-02Add sonar config back to oparent/pom.xmlGary Wu1-0/+6
Change-Id: I6aae043452e82a3cfd60eea8f67dede13b6c9a83 Issue-ID: CIMAN-126 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-02-02Move sonar plugin config to oparent parent pomGary Wu1-6/+0
Change-Id: I0babeb2c75ce8e46bf9ae305c3ddc2a86759605e Issue-ID: CIMAN-126 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-11-21Bump minor versionJessica Wagantall1-3/+3
Bump minor version in preparation for Amsterdam branching. Change-Id: Icaa42897a166686539db7cc242d0e4aa9af52a48 Issue-ID: CIMAN-120 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org> Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-10-11Revert "Update distributionManagement serverIds"Gary Wu1-4/+4
This reverts commit c93675909cd9d81064d1fdd8c0c7f33ba39fc7cc. Change-Id: Ia3d0f75785e4ba9bb25d6cdb55e32206e120c38e Issue-ID: INT-249 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-10-11Update distributionManagement serverIdsGary Wu1-4/+4
Change-Id: Iafd88030b0c9a90abbb3d92d215fc13197a67885 Issue-ID: INT-249 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-09-08Move checkstyle config to plugins sectionGary Wu1-66/+73
Move ONAP checkstyle config from the pluginManagement section to the plugins section to fix dependency resolution issues. Change-Id: I8cc359e2d2e588717eb2f7dd56b691c8ee3cdf0a Issue-ID: INT-128 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-09-06OParent children do not find checkstyleAnaël Closson1-0/+13
The checkstyle plugin cannot be found by projects inheriting by OParent. When maven executes the check-license execution, he finds the org.onap.oparent:checkstyle:jar:1.0.0 as dependency and tries to retreive it. The repository section doesn't apply to plugin dependencies and so the org.onap.oparent:checkstyle:jar cannot be found. By adding it as dependency of the org.onap.oparent:oparent project, the artifact is downloaded using the project repositories and is already available when the plugin dependencies are checked. This might be due to a maven bug. Change-Id: I9eabea660b5fe8ceacc7299914e64ccccd7c2850 Issue-Id: INT-128 Signed-off-by: Anaël Closson <ac2550@intl.att.com>
2017-09-05Relax O-Parent license check requirementsv0.1.11.0.0-ONAP1.0.0-AmsterdamGary Wu1-4/+3
Relax O-Parent license check formatting requirements. At the same time, violations will now become errors and will fail builds. Change-Id: Ie581895796cc06a9f008d7b739583fb44673aa19 Issue-ID: INT-135 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-09-05Merge "OParent deps not downloaded by children"Gary Wu1-0/+23