Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-04-16 | Upgrade Junit to version 5.6 | Baumel, Dvir (db384r) | 1 | -0/+14 | |
Issue-ID: SDC-2844 Change-Id: I4716bf7920f9bb79c450ebfd48e9d4fba54fdfdd Signed-off-by: Baumel, Dvir (db384r) <dvir.baumel@intl.att.com> | |||||
2020-03-26 | Updated the sdc cert | k.kedron | 1 | -0/+0 | |
Issue-ID: SDC-2855 Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com> Change-Id: I1ee3f155ca50edee4a47b8585d95f9a3f848b94a | |||||
2020-03-25 | Fix to CSIT failure due to EP type | Ben David, Elad (eb7504) | 1 | -0/+1 | |
Change-Id: I6a2bcd4b43490898952fa1a5ea171ece015d376c Issue-ID: SDC-2820 Signed-off-by: Ben David, Elad (eb7504) <eb7504@intl.att.com> | |||||
2020-03-17 | PM_Dictionary Support in GAB | Tomasz Golabek | 2 | -0/+98 | |
UI Sanity for PM Dictionary events in GAB: * added dedicated test for PM_Dictionary * fixed legacy keywords for VES_Event test * Moved GAB tests to separate suite Change-Id: I8b033b3f14b5b18e74bd6c566d5c269e4a94001a Issue-ID: SDC-2095 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com> | |||||
2020-03-12 | Disable SecurityFilter | Ofir Sonsino | 1 | -1/+1 | |
Bumping version to 1.7.0 Change-Id: I041bb5ce967b687e10be97dbbaa3ba1d119d13ff Issue-ID: SDC-2825 Signed-off-by: Ofir Sonsino <os0695@intl.att.com> | |||||
2020-02-18 | Configuration file runtime reload | andre.schmid | 1 | -4/+1 | |
Reloads the backend configuration file when the file listener catches a change. Forces validations errors when the configuration file could not be parsed. Remove not used configurations. Change-Id: Ic6fcb2b557d52ec53074c38ab8e0fcfa96e9be67 Issue-ID: SDC-2758 Signed-off-by: andre.schmid <andre.schmid@est.tech> | |||||
2020-02-05 | Fix for sdc-api-tests docker | aribeiro | 1 | -2/+2 | |
Issue-ID: SDC-2756 Change-Id: I87e319a71931881fdef5c5095c79df3a13f4515a Signed-off-by: aribeiro <anderson.ribeiro@est.tech> | |||||
2020-02-02 | Move to version 1.6.1 | shrek2000 | 1 | -1/+1 | |
Move SDC to version 1.6.1 Issue-ID: SDC-2755 Signed-off-by: shrek2000 <oren.kleks@amdocs.com> Change-Id: If5c55fdebb5bc2591190ee4389487f6dbb0e1831 Signed-off-by: shrek2000 <oren.kleks@amdocs.com> | |||||
2020-01-30 | Upgrade to Cassandra 3 | shrek2000 | 5 | -17/+39 | |
Creating base dockers suitable for Cassandra 3 remove cqlsh version Change-Id: I996bad2341410cdf45c49f191e998acf4781fc5d Issue-ID: SDC-2596 Signed-off-by: shrek2000 <oren.kleks@amdocs.com> | |||||
2020-01-26 | Remove ES + Kibana | Ofir Sonsino | 1 | -1/+0 | |
Remove logo from ci report Change-Id: Idef648bc04feffc64ac513e0dbf212256e740978 Issue-ID: SDC-2724 Signed-off-by: Ofir Sonsino <os0695@intl.att.com> | |||||
2020-01-26 | Increase junit TCs | vasraz | 43 | -34616/+471 | |
1. Re-enable disabled TCs (enable = true) 2. Enable @Ignored TCs 3. Add some Assert when missing 4. Remove old unused TCs (covered in UI) Change-Id: I900e52f4860b1fdc5bd1e529a1fe7f5c3491465b Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Issue-ID: SDC-2672 | |||||
2020-01-22 | Catalog alignment | ys9693 | 10
}
<!--
============LICENSE_START=======================================================
ONAP
================================================================================
Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END=========================================================
-->
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.onap.policy.xacml-pdp</groupId>
<artifactId>policy-xacml-pdp</artifactId>
<version>2.3.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>xacml-test</artifactId>
<properties>
<!-- There is code to support JUnit testing in this sub-module. -->
<sonar.skip>true</sonar.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.onap.policy.xacml-pdp.applications</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.onap.policy.common</groupId>
<artifactId>utils</artifactId>
<version>${policy.common.version}</version>
</dependency>
</dependencies>
</project>
|