Release yangtools
[yangtools.git] / common / testutils / pom.xml
index d3b8b961c31e916868607fc2938d2a245b90e804..f66405f1c0fed78f2c502551f7ccf1bc510ff3f9 100644 (file)
@@ -1,68 +1,64 @@
-<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>
+<?xml version="1.0"?>
+<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>
-      <groupId>org.opendaylight.odlparent</groupId>
-      <artifactId>bundle-parent</artifactId>
-      <version>1.8.0-SNAPSHOT</version>
-      <relativePath/>
-  </parent>
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>bundle-parent</artifactId>
+        <version>9.0.15</version>
+        <relativePath/>
+    </parent>
 
-  <groupId>org.opendaylight.yangtools</groupId>
-  <artifactId>testutils</artifactId>
-  <version>1.1.0-SNAPSHOT</version>
-  <!-- Currently not needed, maybe later: <packaging>bundle</packaging> -->
+    <groupId>org.opendaylight.yangtools</groupId>
+    <artifactId>testutils</artifactId>
+    <version>7.0.17</version>
+    <!-- Currently not needed, maybe later: <packaging>bundle</packaging> -->
 
-  <dependencyManagement>
-      <dependencies>
-          <dependency>
-              <groupId>org.opendaylight.yangtools</groupId>
-              <artifactId>yangtools-artifacts</artifactId>
-              <version>${project.version}</version>
-              <scope>import</scope>
-              <type>pom</type>
-          </dependency>
-      </dependencies>
-  </dependencyManagement>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.opendaylight.yangtools</groupId>
+                <artifactId>yangtools-artifacts</artifactId>
+                <version>${project.version}</version>
+                <scope>import</scope>
+                <type>pom</type>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 
-  <dependencies>
-    <!-- NOTE: The use of <scope> here is a little particular, compared to other standard projects...
+    <dependencies>
+        <!-- NOTE: The use of <scope> here is a little particular, compared to other standard projects...
 
-        As this test helper project is intended to itself be used as a <scope>test
-        <dependency> so that the utility code in src/main/java of this project can
-        be used to write src/test/java code in projects using it, all <dependencies>
-        here are <scope>compile here (the default, don't mention it), and NOT <scope>test.
-        (Only a <dependency> which only this project would want to use in its own src/test/java code
-        but not expose to projects depending on it would be <scope>test.  However that kind of against
-        the whole point of this project, and currently there no such dependencies here.
-      -->
-    <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-simple</artifactId>
-    </dependency>
-    <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.mockito</groupId>
-      <artifactId>mockito-all</artifactId>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
-      <groupId>com.google.truth</groupId>
-      <artifactId>truth</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>com.google.guava</groupId>
-      <artifactId>guava</artifactId>
-    </dependency>
+             As this test helper project is intended to itself be used as a <scope>test
+             <dependency> so that the utility code in src/main/java of this project can
+             be used to write src/test/java code in projects using it, all <dependencies>
+             here are <scope>compile here (the default, don't mention it), and NOT <scope>test.
+             (Only a <dependency> which only this project would want to use in its own src/test/java code
+             but not expose to projects depending on it would be <scope>test.  However that kind of against
+             the whole point of this project, and currently there no such dependencies here.
+         -->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+        </dependency>
 
-  </dependencies>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.google.truth</groupId>
+            <artifactId>truth</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>
+    </dependencies>
 
 </project>