diff options
author | Dan Timoney <dtimoney@att.com> | 2020-07-14 08:55:33 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-08-03 19:29:50 +0000 |
commit | 6fb8dfad11c84c0833e842183ec43a4ee95e81de (patch) | |
tree | 68048c21cd7244797fa60e572c2c4c48b7f5abb5 /features/ccsdk-saltstack-adapter/pom.xml | |
parent | 3960d5fe8a04c505334714516c3144c327bb98c1 (diff) |
Update adaptors to sodium
Update sli/adaptors to OpenDaylight Sodium release. 2 changes were
needed:
- mdsal-resource : needed to add unimplemented abstract methods in
inner anonymous BundleContext class in test case.
- resource-assignment: needed to correct unit test problems that were
ignored in earlier versions of h2
Change-Id: Ice63bfce64768e46c4376db55e3e9e97d0b934ad
Issue-ID: CCSDK-2551
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'features/ccsdk-saltstack-adapter/pom.xml')
-rw-r--r-- | features/ccsdk-saltstack-adapter/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/features/ccsdk-saltstack-adapter/pom.xml b/features/ccsdk-saltstack-adapter/pom.xml index ffc43e152..2e51c83be 100644 --- a/features/ccsdk-saltstack-adapter/pom.xml +++ b/features/ccsdk-saltstack-adapter/pom.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -33,6 +34,13 @@ <groupId>${project.groupId}</groupId> <artifactId>saltstack-adapter-provider</artifactId> <version>${project.version}</version> + + <exclusions> + <exclusion> + <artifactId>powermock-api-mockito</artifactId> + <groupId>org.powermock</groupId> + </exclusion> + </exclusions> </dependency> </dependencies> </project> |