aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOURN-plugin
AgeCommit message (Collapse)AuthorFilesLines
2018-03-27Remove dependencies with vulnerabilitiesArthur Martella1-1/+1
Upgrade commons-fileupload : commons-fileupload to 1.3.3 Upgrade com.fasterxml.jackson.core : jackson-databind to 2.8.7 Change-Id: I6a9f074b07dea59327ca79f945473767d57d5aa8 Issue-ID: SO-537 Signed-off-by: Arthur Martella <amartell@research.att.com>
2018-03-14AT&T 1712 and 1802 release codeRob Daugherty17-0/+1049
This is code from AT&T's 1712 and 1802 releases. Change-Id: Ie1e85851e94bc66c4d9514a0226c221939531a04 Issue-ID: SO-425 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-10-19Restore MSOMockServer to the buildRob Daugherty17-1086/+0
Classes in this artifact are needed for unit tests. For a long term solution, we should find a way to build these classes into a test-scoped artifact. Issue: SO-242 Change-Id: I1a57fead07250c841a9f59afb805aea26c7bc102 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-10-17Remove unused import and Rename local VariablesRamanjaneya-Huawei1-13/+10
Change-Id: I35267602e813852d43ef84c691a05bc49133082b Issue-id: SO-224 Signed-off-by: Ramanjaneya-Huawei <ramanjaneya.palleti@huawei.com>
2017-10-12Replace usage of System.out by a loggerrama-huawei1-8/+13
Issue-Id: SO-213 Change-Id: Ia4bed73b2ef46fd195d7e3ffdfcaf140c38ab6fa Signed-off-by: rama-huawei <rama.subba.reddy.s@huawei.com>
2017-10-03Removed commented linesramanjaneya1-1/+0
Change-Id: I80ecfce64650e4d9aec800898c7f98645f557d8a Issue-Id:SO-118 Signed-off-by: ramanjaneya <ramanjaneya.palleti@huawei.com>
2017-09-27Replaced with Diamond symbolramanjaneya1-2/+2
Added Override annotation Issue-Id:SO-118 Change-Id: I7b2dd323c4676001a6c7695ca10a490b72a7ccd1 Signed-off-by: ramanjaneya <ramanjaneya.palleti@huawei.com>
2017-09-26Fix some major Sonar Issuessurya-huawei1-4/+1
*Remove unused varible and assigments *Remove uneccessary comment Issue-Id: SO-118 Change-Id: I6c8bd416dd504bd9bceb8fd04e5da5efcbb6c89a Signed-off-by: surya-huawei <a.u.surya@huawei.com>
2017-09-22Added @Override for methodAnkit-Huawei1-0/+1
SO-158 Change-Id: I71ab81317e011e3721beaa93afd6e845d5e18036 Signed-off-by: Ankit-Huawei <ankit.kumar.sinha1@huawei.com>
2017-09-11Groovy scripts header correctionSeshu-Kumar-M1-1/+1
IssueId: SO-120 Change-Id: I58aaff6213fcc91388f1cabf3ca37838a25c1c73 Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
2017-09-11Change the header to SOSeshu-Kumar-M6-6/+6
IssueId: SO-120 Change-Id: I4282112764bc7697dd98e780bb02b13319cabb5d Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
2017-09-08Merge "sonar blocker issue fixes"Rob Daugherty1-10/+10
2017-09-081710 Rebase - Second AttemptArthur Martella13-1348/+1
This commit rebases changes from openecomp-mso/internal-staging-1710 up to and including this codecloud commit: 54483fc6606ddb1591a2e9da61bff8712325f924 Wed Sep 6 18:12:56 2017 -0400 Rebasing was done on a branch on top of this commit in so/master in ONAP: 93fbdfbe46104f8859d4754040f979cb7997c157 Thu Sep 7 16:42:59 2017 +0000 Change-Id: I4ad9abf40da32bf5bdca43e868b8fa2dbcd9dc59 Issue-id: SO-107 Signed-off-by: Arthur Martella <amartell@research.att.com>
2017-09-07sonar blocker issue fixesSeshu-Kumar-M1-10/+10
Issue ID: SO-98 Change-Id: Ida8eba238c3c0ca867cc40a58d00ddcd74417921 Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
2017-09-06Sonar critical issues fixSeshu-Kumar-M2-29/+67
Issue-Id : SO-98 Change-Id: I229819e850c36fce9f8715d1534f8e5c5d812a0a Signed-off-by: Seshu-Kumar-M <seshu.kumar.m@huawei.com>
2017-08-04Failed to deploy so artifacts in nexus (again)Rob Daugherty1-3/+3
There are Linux Foundation rules (enforced by nexus) that I still don't really understand. I'm convinced this is absolutely true: The groupId of every artifact in a project MUST begin with: org.openecomp.<project> --or-- org.onap.<project> The top-level artifact is no exception. So for example, this is NOT allowed: <groupId>org.openecomp</groupId> <artifactId>so</groupId> Here's what I'm trying now. The top level pom will contain: <groupId>org.openecomp.so</groupId> <artifactId>so-parent</artifactId> Child modules will contain: <parent> <groupId>org.openecomp.so</groupId> <artifactId>so-parent</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <groupId>org.openecomp.so</groupId> <artifactId>some-child-artifact</artifactId> Note that the groupId for the direct child module will be the same as the groupId for its parent. Issue: SO-21 Change-Id: I0d3cd2eb7a1883e23e3c0878ee7fa3dd4a7d55b2 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-08-01Failed to deploy so artifacts in nexusRob Daugherty1-3/+3
More problems encountered since mso repos were renamed. We now have found that this declaration in the top-level so pom causes the deploy to fail with a 403 Forbidden error: <groupId>org.openecomp</groupId> <artifactId>so</artifactId> We are changing this to: <groupId>org.openecomp.so</groupId> <artifactId>framework</artifactId> Issue: SO-21 Change-Id: I4e21d689c73c5071bde725127bb81482ce3d91f9 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-07-19Fix artifact group IDs (org.openecomp.so)Rob Daugherty1-3/+3
Since the repositories were renamed from "mso" to "so" the artifact group IDs in the poms must be updated to match. Issue: SO-39 Change-Id: I617fe738a77d0f6c1d1cc0ac9474fb753f4e234c Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-05-02[MSO-8] Second step of the rebase for MSODeterme, Sebastien (sd378r)22-2067/+2067
Second rebase containing additional features for MSO + total reworking of the BPMN structure + Notification flow can now be added at the end of some BPMN flows Change-Id: I7e937c7a0ba1593ca85e164a093f79c7e38b6ce0 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-04-11[MSO-8] Update the maven dependencyxg353y24-76/+88
Update the maven depenency for sdc-distribution-client to cooperate with the sdc changes. Change-Id: I2da936e5c40cb68c7181bb78307192dd5655b5dc Signed-off-by: xg353y <xg353y@intl.att.com>
2017-03-13Update to version 1.1.0ChrisC1-5/+5
Change-Id: Id054e7a04ce88450c3cfe108c8259c4d287681c8 Signed-off-by: ChrisC <cc697w@intl.att.com>
2017-02-06Fix the maven groupId of BPMN CockpitJulienBe1-1/+1
Change-Id: Icf233b27421878e3b4a65705ee202f517ef6a78c Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com> Signed-off-by: JulienBe <jb379x@att.com>
2017-01-31Initial OpenECOMP MSO commitChrisC29-0/+2384
Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d Signed-off-by: ChrisC <cc697w@intl.att.com>