Exclude test utilities from sonar coverage statistics
[honeycomb.git] / vpp-common / minimal-distribution / pom.xml
index e80f0eb..12d11ec 100644 (file)
   <parent>
     <groupId>io.fd.honeycomb.common</groupId>
     <artifactId>minimal-distribution-parent</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.16.12-SNAPSHOT</version>
     <relativePath>../../common/minimal-distribution-parent</relativePath>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>io.fd.honeycomb.vpp</groupId>
   <artifactId>minimal-distribution</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.16.12-SNAPSHOT</version>
 
   <properties>
     <main.class>io.fd.honeycomb.vpp.distro.Main</main.class>
-    <honeycomb.min.distro.version>1.0.0-SNAPSHOT</honeycomb.min.distro.version>
+    <honeycomb.min.distro.version>1.16.12-SNAPSHOT</honeycomb.min.distro.version>
+    <jvpp.version>16.12-SNAPSHOT</jvpp.version>
+    <hamcrest.version>1.3</hamcrest.version>
   </properties>
 
   <build>
     <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
-        <!-- 2.8.0-01 and later require maven-compiler-plugin 3.1 or higher -->
-        <configuration>
-          <compilerId>groovy-eclipse-compiler</compilerId>
-        </configuration>
-        <dependencies>
-          <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-eclipse-compiler</artifactId>
-            <version>2.9.2-01</version>
-          </dependency>
-          <!-- for 2.8.0-01 and later you must have an explicit dependency on groovy-eclipse-batch -->
-          <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-eclipse-batch</artifactId>
-            <version>2.4.3-01</version>
-          </dependency>
-        </dependencies>
       </plugin>
       <plugin>
         <groupId>org.codehaus.gmaven</groupId>
     <dependency>
       <groupId>io.fd.vpp</groupId>
       <artifactId>jvpp-registry</artifactId>
-      <version>16.09-SNAPSHOT</version>
+      <version>${jvpp.version}</version>
     </dependency>
     <dependency>
       <groupId>io.fd.vpp</groupId>
       <artifactId>jvpp-core</artifactId>
-      <version>16.09-SNAPSHOT</version>
+      <version>${jvpp.version}</version>
     </dependency>
     <dependency>
       <groupId>${project.groupId}</groupId>
       <version>${project.version}</version>
     </dependency>
 
+    <!-- Testing Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject.extensions</groupId>
+      <artifactId>guice-testlib</artifactId>
+      <version>${guice.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hamcrest</groupId>
+      <artifactId>hamcrest-all</artifactId>
+      <version>${hamcrest.version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>