Add eddsa dependency to netconf-testtool 91/89291/2
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 26 Apr 2020 14:51:36 +0000 (16:51 +0200)
committerRobert Varga <nite@hq.sk>
Sun, 26 Apr 2020 18:02:51 +0000 (18:02 +0000)
This enables it to process ed25519 keys, which is useful.
Also remove superfluous xmlunit version specification.

Change-Id: Ib8803c2684e14840269fbec9f71b89b0d4b460a8
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
netconf/tools/netconf-testtool/pom.xml

index 18157f2fac442749d2ade2e482d60aadece8bbf3..c7bfa524574f03d54248d2494149b8ef1dacafe9 100644 (file)
@@ -26,7 +26,6 @@
 
     <properties>
         <sonar.skip>true</sonar.skip>
-        <xmlunit.version>2.6.3</xmlunit.version>
     </properties>
 
     <dependencies>
             <groupId>${project.groupId}</groupId>
             <artifactId>mdsal-netconf-ssh</artifactId>
         </dependency>
+        <dependency>
+            <groupId>net.i2p.crypto</groupId>
+            <artifactId>eddsa</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.karaf.features</groupId>
             <artifactId>org.apache.karaf.features.core</artifactId>
         <dependency>
             <groupId>org.xmlunit</groupId>
             <artifactId>xmlunit-core</artifactId>
-            <version>${xmlunit.version}</version>
-            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.xmlunit</groupId>
             <artifactId>xmlunit-assertj</artifactId>
-            <version>${xmlunit.version}</version>
-            <scope>test</scope>
         </dependency>
     </dependencies>