Merge "Validate user input in FlowSepc Configuration"
[controller.git] / opendaylight / clustering / services_implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14   </scm>
15
16   <artifactId>clustering.services-implementation</artifactId>
17   <version>0.4.0-SNAPSHOT</version>
18   <packaging>bundle</packaging>
19   <properties>
20     <!-- Sonar properties using jacoco to retrieve integration test results -->
21     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
22     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
23     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
24     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
25     <sonar.language>java</sonar.language>
26   </properties>
27   <build>
28     <pluginManagement>
29       <plugins>
30         <plugin>
31           <groupId>org.jacoco</groupId>
32           <artifactId>jacoco-maven-plugin</artifactId>
33           <version>${jacoco.version}</version>
34         </plugin>
35       </plugins>
36     </pluginManagement>
37   <plugins>
38     <plugin>
39       <groupId>org.apache.felix</groupId>
40       <artifactId>maven-bundle-plugin</artifactId>
41       <version>2.3.6</version>
42       <extensions>true</extensions>
43       <configuration>
44         <instructions>
45           <Import-Package>
46             org.slf4j,
47             !org.apache.logging.log4j.*,
48             !bsh*,
49             !net.jcip.*,
50             !javax.swing,
51             !org.hornetq.*,
52             !org.jboss.*,
53             javax.transaction,
54             *,
55             org.opendaylight.controller.clustering.services,
56             org.opendaylight.controller.sal.core
57           </Import-Package>
58           <Bundle-Activator>
59             org.opendaylight.controller.clustering.services_implementation.internal.Activator
60           </Bundle-Activator>
61           <!-- Add in the DynamicImport-Package ONLY the packages that -->
62           <!-- contains types that MUST be unmarshalled by the -->
63           <!-- infinispan. They need to be wired at runtime even during -->
64           <!-- the bundle is already RESOLVED, but at the same time if -->
65           <!-- those are missing the bundle will still come up, this is -->
66           <!-- why those dependencies ends in the DynamicImport-Package -->
67           <!-- rather in the Import-Package -->
68           <DynamicImport-Package>
69             *
70           </DynamicImport-Package>
71           <Embed-Dependency>
72             infinispan-core,jgroups,jboss-marshalling-river,jboss-marshalling,jboss-logging,staxmapper,narayana-jta;type=!pom;inline=false
73           </Embed-Dependency>
74           <Embed-Transitive>
75             true
76           </Embed-Transitive>
77         </instructions>
78         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
79       </configuration>
80     </plugin>
81     <plugin>
82       <groupId>org.jacoco</groupId>
83       <artifactId>jacoco-maven-plugin</artifactId>
84       <configuration>
85         <includes>org.opendaylight.controller.*</includes>
86       </configuration>
87       <executions>
88         <execution>
89           <id>pre-test</id>
90           <goals>
91             <goal>prepare-agent</goal>
92           </goals>
93         </execution>
94         <execution>
95           <id>post-test</id>
96           <phase>test</phase>
97           <goals>
98             <goal>report</goal>
99           </goals>
100         </execution>
101       </executions>
102     </plugin>
103   </plugins>
104   </build>
105   <dependencies>
106     <dependency>
107       <groupId>org.infinispan</groupId>
108       <artifactId>infinispan-core</artifactId>
109       <version>5.3.0.Final</version>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.controller</groupId>
113       <artifactId>clustering.services</artifactId>
114       <version>0.4.0-SNAPSHOT</version>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.controller</groupId>
118       <artifactId>sal</artifactId>
119       <version>0.5.0-SNAPSHOT</version>
120     </dependency>
121     <dependency>
122       <groupId>org.jboss.jbossts.jta</groupId>
123       <artifactId>narayana-jta</artifactId>
124       <version>4.17.7.Final</version>
125     </dependency>
126   </dependencies>
127 </project>