Full maven pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright © 2018 Pantheon Technologies, s.r.o. and others. All rights reserved.
~
~ This program and the accompanying materials are made available under the
~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
~ and is available at http://www.eclipse.org/legal/epl-v10.html
-->
<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>
<groupId>io.lighty.examples.test.netconf</groupId>
<artifactId>lighty-netconf-it-test</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<lighty.version>8.0.0-SNAPSHOT</lighty.version>
</properties>
<dependencies>
<!-- opendaylight dependencies -->
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>yang-common</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>yang-model-api</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>yang-data-api</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>yang-data-codec-gson</artifactId>
<version>2.0.3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.mdsal</groupId>
<artifactId>mdsal-binding-dom-codec</artifactId>
<version>0.12.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.opendaylight.mdsal</groupId>
<artifactId>mdsal-binding-generator-impl</artifactId>
<version>0.12.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.opendaylight.mdsal.model</groupId>
<artifactId>ietf-topology</artifactId>
<version>2013.10.21.11.0</version>
</dependency>
<!--Tests-->
<dependency>
<groupId>io.lighty.kit.models</groupId>
<artifactId>lighty-kit-sample-models</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.modules.northbound.restconf</groupId>
<artifactId>lighty-restconf-nb</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.netconf.device</groupId>
<artifactId>lighty-netconf-device</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.models.test</groupId>
<artifactId>lighty-toaster</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.netconf.device</groupId>
<artifactId>lighty-toaster-device</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.netconf.device</groupId>
<artifactId>lighty-network-topology-device</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.clients</groupId>
<artifactId>lighty-binding-aware-rest-client</artifactId>
<version>8.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.lighty.kit.examples.controllers</groupId>
<artifactId>lighty-restconf-netconf-app</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.clients</groupId>
<artifactId>lighty-raw-rest-client</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>io.lighty.resources</groupId>
<artifactId>keystore-jks</artifactId>
<version>${lighty.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>