Modify build after breakage caused by JaCoCo. Unfortunately requires
[groupbasedpolicy.git] / groupbasedpolicy / pom.xml
index 51abcbce4f07b1661b6ca20e172aeed84a95a109..8fedd9bd732302bf0aab4e56313dfc9a4c55a002 100644 (file)
       <groupId>org.opendaylight.controller.model</groupId>
       <artifactId>model-flow-service</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.opendaylight.controller.model</groupId>
-      <artifactId>model-flow-management</artifactId>
-    </dependency>
     <dependency>
       <groupId>org.opendaylight.controller.model</groupId>
       <artifactId>model-inventory</artifactId>
         <configuration>
           <instructions>
             <Import-Package>*</Import-Package>
-            <Export-Package>org.opendaylight.controller.config.yang.config.endpoint_provider</Export-Package>
+            <Export-Package>
+             org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
+             org.opendaylight.controller.config.yang.config.endpoint_provider,
+             org.opendaylight.groupbasedpolicy.endpoint,
+             org.opendaylight.groupbasedpolicy.resolver
+           </Export-Package>
           </instructions>
           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <redirectTestOutputToFile>true</redirectTestOutputToFile>
-          <!-- needed for cobertura -->
-          <argLine>-XX:-UseSplitVerifier</argLine>
-        </configuration>
-      </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>build-helper-maven-plugin</artifactId>
           </execution>
         </executions>
       </plugin>
-      <!-- Code coverage analysis -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <version>2.6</version>
-        <configuration>
-          <instrumentation>
-            <excludes>
-              <exclude>org/opendaylight/yang/**/*.class</exclude>
-              <exclude>org/opendaylight/controller/config/yang/**/*.class</exclude>
-            </excludes>
-          </instrumentation>
-        </configuration>
-      </plugin>
       <plugin>
         <groupId>org.opendaylight.yangtools</groupId>
         <artifactId>yang-maven-plugin</artifactId>
           </execution>
         </executions>
       </plugin>
-    </plugins>
-  </build>
-
-  <!-- Project reporting -->
-  <reporting>
-    <plugins>
-      <!-- Code coverage analysis -->
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <version>2.6</version>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <formats>
-            <format>html</format>
-            <format>xml</format>
-          </formats>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
         </configuration>
       </plugin>
+      <plugin>
+       <groupId>org.jacoco</groupId>
+       <artifactId>jacoco-maven-plugin</artifactId>
+       <executions>
+          <execution>
+            <id>pre-unit-test</id>
+            <goals>
+              <goal>prepare-agent</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>post-unit-test</id>
+            <phase>test</phase>
+            <goals>
+              <goal>report</goal>
+            </goals>
+            <configuration>
+              <dataFile>${sonar.jacoco.reportPath}</dataFile>
+             <includes>
+               <include>org/opendaylight/groupbasedpolicy/**/*.class</include>
+             </includes>
+            </configuration>
+          </execution>
+       </executions>
+      </plugin>
     </plugins>
-  </reporting>
+  </build>
 </project>