Merge "To SAL conversion test."
[controller.git] / opendaylight / clustering / services_implementation / pom.xml
index 82a97b666f33ea12622eacc7c22d5251866da8b8..9606bdc019b561de5aed00c0eb4fb342da693f48 100644 (file)
     <version>1.4.0-SNAPSHOT</version>
     <relativePath>../../commons/opendaylight</relativePath>
   </parent>
+  <scm>
+    <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
+    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
+    <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
+  </scm>
 
-  <groupId>org.opendaylight.controller</groupId>
   <artifactId>clustering.services-implementation</artifactId>
   <version>0.4.0-SNAPSHOT</version>
   <packaging>bundle</packaging>
-
+  <properties>
+    <!-- Sonar properties using jacoco to retrieve integration test results -->
+    <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
+    <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
+    <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
+    <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
+    <sonar.language>java</sonar.language>
+  </properties>
   <build>
-    <plugins>
-      <plugin>
-       <groupId>org.apache.felix</groupId>
-       <artifactId>maven-bundle-plugin</artifactId>
-       <version>2.3.6</version>
-       <extensions>true</extensions>
-       <configuration>
-         <instructions>
-           <Import-Package>
-              org.slf4j,
-              !org.jboss.*,
-              !bsh*,
-              !net.jcip.*,
-              javax.transaction,
-              *,
-              org.opendaylight.controller.clustering.services,
-              org.opendaylight.controller.sal.core
-            </Import-Package>
-            <Bundle-Activator>
-              org.opendaylight.controller.clustering.services_implementation.internal.Activator
-            </Bundle-Activator>
-            <!-- Add in the DynamicImport-Package ONLY the packages that -->
-            <!-- contains types that MUST be unmarshalled by the -->
-            <!-- infinispan. They need to be wired at runtime even during -->
-            <!-- the bundle is already RESOLVED, but at the same time if -->
-            <!-- those are missing the bundle will still come up, this is -->
-            <!-- why those dependencies ends in the DynamicImport-Package -->
-            <!-- rather in the Import-Package  -->
-            <DynamicImport-Package>
-              *
-            </DynamicImport-Package>
-            <Embed-Dependency>
-              infinispan-core,jgroups,jboss-marshalling-river,jboss-marshalling,jboss-logging,staxmapper;type=!pom;inline=false
-            </Embed-Dependency>
-            <Embed-Transitive>
-              true
-            </Embed-Transitive>
-         </instructions>
-       </configuration>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>${jacoco.version}</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  <plugins>
+    <plugin>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>maven-bundle-plugin</artifactId>
+      <version>${bundle.plugin.version}</version>
+      <extensions>true</extensions>
+      <configuration>
+        <instructions>
+          <Import-Package>
+            org.slf4j,
+            !org.apache.logging.log4j.*,
+            !bsh*,
+            !net.jcip.*,
+            !javax.swing,
+            !org.hornetq.*,
+            !org.jboss.*,
+            javax.transaction,
+            *,
+            org.opendaylight.controller.clustering.services,
+            org.opendaylight.controller.sal.core
+          </Import-Package>
+          <Bundle-Activator>
+            org.opendaylight.controller.clustering.services_implementation.internal.Activator
+          </Bundle-Activator>
+          <!-- Add in the DynamicImport-Package ONLY the packages that -->
+          <!-- contains types that MUST be unmarshalled by the -->
+          <!-- infinispan. They need to be wired at runtime even during -->
+          <!-- the bundle is already RESOLVED, but at the same time if -->
+          <!-- those are missing the bundle will still come up, this is -->
+          <!-- why those dependencies ends in the DynamicImport-Package -->
+          <!-- rather in the Import-Package -->
+          <DynamicImport-Package>
+            *
+          </DynamicImport-Package>
+          <Embed-Dependency>
+            infinispan-core,jgroups,jboss-marshalling-river,jboss-marshalling,jboss-logging,staxmapper,narayana-jta;type=!pom;inline=false
+          </Embed-Dependency>
+          <Embed-Transitive>
+            true
+          </Embed-Transitive>
+        </instructions>
+        <manifestLocation>${project.basedir}/META-INF</manifestLocation>
+      </configuration>
+    </plugin>
+    <plugin>
+      <groupId>org.jacoco</groupId>
+      <artifactId>jacoco-maven-plugin</artifactId>
+      <configuration>
+        <includes>org.opendaylight.controller.*</includes>
+      </configuration>
+      <executions>
+        <execution>
+          <id>pre-test</id>
+          <goals>
+            <goal>prepare-agent</goal>
+          </goals>
+        </execution>
+        <execution>
+          <id>post-test</id>
+          <phase>test</phase>
+          <goals>
+            <goal>report</goal>
+          </goals>
+        </execution>
+      </executions>
+    </plugin>
+    <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <version>${enforcer.version}</version>
+        <executions>
+          <execution>
+            <id>enforce-banned-dependencies</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <bannedDependencies>
+                  <excludes>
+                    <exclude>org.infinispan:infinispan-core:*</exclude>
+                  </excludes>
+                  <includes>
+                    <include>org.infinispan:infinispan-core:[5.3.0.Final]</include>
+                  </includes>
+                </bannedDependencies>
+              </rules>
+              <fail>true</fail>
+            </configuration>
+          </execution>
+        </executions>
       </plugin>
-    </plugins>
+  </plugins>
   </build>
   <dependencies>
     <dependency>
       <groupId>org.infinispan</groupId>
       <artifactId>infinispan-core</artifactId>
-      <version>5.2.3.Final</version>
+      <version>5.3.0.Final</version>
     </dependency>
     <dependency>
       <groupId>org.opendaylight.controller</groupId>
     <dependency>
       <groupId>org.opendaylight.controller</groupId>
       <artifactId>sal</artifactId>
-      <version>0.4.0-SNAPSHOT</version>
+      <version>0.5.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.jbossts.jta</groupId>
+      <artifactId>narayana-jta</artifactId>
+      <version>4.17.7.Final</version>
     </dependency>
   </dependencies>
 </project>