diff options
author | Dan Timoney <dtimoney@att.com> | 2021-02-04 16:36:06 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-02-05 12:05:21 -0500 |
commit | 02013b33111f0b51d07c80c89f4d5d08b60b2099 (patch) | |
tree | 641f4e528f9c5d078b5a9013466158a4fa94f40c /a1-adapter/a1-adapter-api/provider/pom.xml | |
parent | fee9955e585a00155b93f6de279a36217a8857bd (diff) |
Update for ODL Aluminum
Update A1 adapter to conform to OpenDaylight Aluminum.
Issue-ID: CCSDK-3138
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I1dbda465c93ca8d4da532764b36c9ffb41fc7a9a
Diffstat (limited to 'a1-adapter/a1-adapter-api/provider/pom.xml')
-rw-r--r-- | a1-adapter/a1-adapter-api/provider/pom.xml | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/a1-adapter/a1-adapter-api/provider/pom.xml b/a1-adapter/a1-adapter-api/provider/pom.xml index aa6cbf43..079c2ad1 100644 --- a/a1-adapter/a1-adapter-api/provider/pom.xml +++ b/a1-adapter/a1-adapter-api/provider/pom.xml @@ -46,13 +46,6 @@ <dependencyManagement> <dependencies> <dependency> - <groupId>org.opendaylight.controller</groupId> - <artifactId>mdsal-artifacts</artifactId> - <version>1.6.1</version> - <type>pom</type> - <scope>import</scope> - </dependency> - <dependency> <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>sli-core-artifacts</artifactId> <version>${ccsdk.sli.core.version}</version> @@ -69,16 +62,23 @@ <version>${project.version}</version> </dependency> <dependency> - <groupId>org.opendaylight.controller</groupId> - <artifactId>sal-binding-api</artifactId> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-api</artifactId> </dependency> <dependency> - <groupId>org.opendaylight.controller</groupId> - <artifactId>sal-common-util</artifactId> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-test-model</artifactId> + <scope>test</scope> </dependency> <dependency> - <groupId>org.opendaylight.controller</groupId> - <artifactId>sal-core-api</artifactId> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-test-utils</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>mdsal-binding-dom-adapter</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> @@ -166,5 +166,13 @@ </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <forceJavacCompilerUse>true</forceJavacCompilerUse> + </configuration> + </plugin> + </plugins> </build> </project> |