Separating renderers into features.
[groupbasedpolicy.git] / groupbasedpolicy / pom.xml
index 84c51ce66cf462f2663f1151e3b34fd2a01ed085..5b54cda6266f322c37d2ba6270d74c77e421d007 100644 (file)
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.opendaylight.groupbasedpolicy</groupId>
     <artifactId>groupbasedpolicy.project</artifactId>
-    <version>0.1.0-SNAPSHOT</version>
+    <version>0.2.0-SNAPSHOT</version>
     <relativePath>../</relativePath>
   </parent>
 
   <packaging>bundle</packaging>
 
   <properties>
-    <sal.version>1.1-SNAPSHOT</sal.version>
-    <yangtools.binding.version>0.6.2-SNAPSHOT</yangtools.binding.version>
-    <yangtools.generator.version>0.6.2-SNAPSHOT</yangtools.generator.version>
-    <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
   </properties>
 
   <dependencies>
@@ -46,7 +42,7 @@
     <dependency>
       <groupId>io.netty</groupId>
       <artifactId>netty-all</artifactId>
-      <version>4.0.10.Final</version>
+      <version>${netty.version}</version>
     </dependency>
     <dependency>
       <groupId>org.opendaylight.controller</groupId>
       <groupId>org.opendaylight.yangtools</groupId>
       <artifactId>yang-common</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.opendaylight.controller.model</groupId>
-      <artifactId>model-flow-base</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.controller.model</groupId>
-      <artifactId>model-flow-service</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.controller.model</groupId>
-      <artifactId>model-flow-statistics</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>
-    </dependency>
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.core</artifactId>
     </dependency>
-
     <dependency>
-      <groupId>com.fasterxml.jackson.core</groupId>
-      <artifactId>jackson-annotations</artifactId>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+      <version>1.1</version>
     </dependency>
-
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-all</artifactId>
+      <version>1.9.5</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
         <extensions>true</extensions>
         <configuration>
           <instructions>
-            <Import-Package>*</Import-Package>
-            <Export-Package>org.opendaylight.controller.config.yang.config.endpoint_provider</Export-Package>
+            <Import-Package>
+             org.apache.http.*;version="4.3.2",
+             *;resolution:=optional</Import-Package>
+             <Embed-Dependency>httpclient,httpcore,commons-lang,commons-exec;type=!pom;inline=false</Embed-Dependency>
+            <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,
+             org.opendaylight.groupbasedpolicy.util,
+           </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>
           <dependency>
             <groupId>org.opendaylight.controller</groupId>
             <artifactId>yang-jmx-generator-plugin</artifactId>
-            <version>0.2.5-SNAPSHOT</version>
+            <version>0.3.0-SNAPSHOT</version>
           </dependency>
           <dependency>
             <groupId>org.opendaylight.yangtools</groupId>
           </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>
+