Add eddsa dependency to netconf-testtool 99/89399/3
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 15:04:36 +0000 (15:04 +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 ffe9b015ee3e0949205247146147fac11c30eedb..2852ebe4443c680f5200656e3c9830ad0a3eca28 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>