Use released 1.5.2 CCSDK parent
[ccsdk/sli/core.git] / sli / provider / pom.xml
index 0a09028..eb3dc27 100755 (executable)
@@ -1,19 +1,17 @@
-<?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">
+<?xml version="1.0" encoding="UTF-8"?>
+<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.onap.ccsdk.parent</groupId>
                <artifactId>binding-parent</artifactId>
-               <version>1.2.0-SNAPSHOT</version>
-               <relativePath />
+               <version>1.5.2</version>
+               <relativePath/>
        </parent>
 
        <groupId>org.onap.ccsdk.sli.core</groupId>
        <artifactId>sli-provider</artifactId>
-       <version>0.4.0-SNAPSHOT</version>
+       <version>0.7.1-SNAPSHOT</version>
        <packaging>bundle</packaging>
 
        <name>ccsdk-sli-core :: sli :: ${project.artifactId}</name>
                        <groupId>org.opendaylight.controller</groupId>
                        <artifactId>sal-binding-api</artifactId>
                </dependency>
-
+        <dependency>
+            <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
+            <artifactId>rfc6991</artifactId>
+        </dependency>       
+        <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>sal-core-api</artifactId>
+        </dependency>
                <!-- Testing Dependencies -->
                <dependency>
                        <groupId>junit</groupId>
                                </configuration>
 
                        </plugin>
+                       <!-- Jacoco / Sonar -->
+                       <plugin>
+                               <groupId>org.jacoco</groupId>
+                               <artifactId>jacoco-maven-plugin</artifactId>
+                               <version>${jacoco.version}</version>
+                               <executions>
+                                       <execution>
+                                               <id>aggregate-report</id>
+                                               <phase>verify</phase>
+                                               <goals>
+                                                       <goal>report-aggregate</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <dataFileIncludes>
+                                                               target/code-coverage/jacoco-ut.exec,
+                                                               target/code-coverage/jacoco-it.exec,
+                                                               ../provider-base/target/code-coverage/jacoco-ut.exec,
+                                                               ../provider-base/target/code-coverage/jacoco-it.exec
+                                                       </dataFileIncludes>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
                </plugins>
 
        </build>
+
 </project>