c9fc044fcfd00368ce06053a7196e9120a2122c4
[ccsdk/sli/core.git] / sli / provider / 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
5         <parent>
6                 <groupId>org.onap.ccsdk.parent</groupId>
7                 <artifactId>binding-parent</artifactId>
8                 <version>2.1.0-SNAPSHOT</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.ccsdk.sli.core</groupId>
13         <artifactId>sli-provider</artifactId>
14         <version>1.1.0-SNAPSHOT</version>
15         <packaging>bundle</packaging>
16
17         <name>ccsdk-sli-core :: sli :: ${project.artifactId}</name>
18         <description>SLI Provider is the OSGi bundle that exposes the service logic interpreter as a service.</description>
19
20         <properties>
21                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         </properties>
23
24         <dependencyManagement>
25                 <dependencies>
26                         <dependency>
27                                 <groupId>org.onap.ccsdk.sli.core</groupId>
28                                 <artifactId>dblib-provider</artifactId>
29                                 <version>${project.version}</version>
30                         </dependency>
31                 </dependencies>
32         </dependencyManagement>
33         <dependencies>
34                 <dependency>
35                         <groupId>org.onap.ccsdk.sli.core</groupId>
36                         <artifactId>sli-model</artifactId>
37                         <version>${project.version}</version>
38                         <scope>test</scope>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.onap.ccsdk.sli.core</groupId>
42                         <artifactId>sli-common</artifactId>
43                         <version>${project.version}</version>
44                         <scope>compile</scope>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.onap.ccsdk.sli.core</groupId>
48                         <artifactId>sli-provider-base</artifactId>
49                         <version>${project.version}</version>
50                         <scope>compile</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.slf4j</groupId>
54                         <artifactId>slf4j-api</artifactId>
55                 </dependency>
56                 <dependency>
57                         <groupId>commons-lang</groupId>
58                         <artifactId>commons-lang</artifactId>
59                         <scope>compile</scope>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>org.osgi</groupId>
64                         <artifactId>org.osgi.core</artifactId>
65                         <scope>provided</scope>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.opendaylight.controller</groupId>
69                         <artifactId>sal-binding-api</artifactId>
70                         <scope>provided</scope>
71                 </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
74             <artifactId>rfc6991</artifactId>
75                         <scope>provided</scope>
76         </dependency>
77                 <dependency>
78                         <groupId>org.opendaylight.bgpcep</groupId>
79                         <artifactId>bgp-concepts</artifactId>
80                         <scope>provided</scope>
81                         <optional>true</optional>
82                 </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-core-api</artifactId>
86                         <scope>provided</scope>
87         </dependency>
88                 <!-- Testing Dependencies -->
89                 <dependency>
90                         <groupId>junit</groupId>
91                         <artifactId>junit</artifactId>
92                         <scope>test</scope>
93                 </dependency>
94
95                 <dependency>
96                         <groupId>org.mockito</groupId>
97                         <artifactId>mockito-core</artifactId>
98                         <scope>test</scope>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.apache.derby</groupId>
102                         <artifactId>derby</artifactId>
103                         <scope>test</scope>
104                 </dependency>
105         </dependencies>
106
107         <build>
108                 <plugins>
109                         <plugin>
110                                 <groupId>org.apache.felix</groupId>
111                                 <artifactId>maven-bundle-plugin</artifactId>
112                                 <extensions>true</extensions>
113                                 <configuration>
114                                         <instructions>
115                                                 <DynamicImport-Package>*</DynamicImport-Package>
116                                         </instructions>
117                                 </configuration>
118                         </plugin>
119                         <!-- Jacoco / Sonar -->
120                         <plugin>
121                                 <groupId>org.jacoco</groupId>
122                                 <artifactId>jacoco-maven-plugin</artifactId>
123                                 <version>${jacoco.version}</version>
124                                 <executions>
125                                         <execution>
126                                                 <id>aggregate-report</id>
127                                                 <phase>verify</phase>
128                                                 <goals>
129                                                         <goal>report-aggregate</goal>
130                                                 </goals>
131                                                 <configuration>
132                                                         <dataFileIncludes>
133                                                                 target/code-coverage/jacoco-ut.exec,
134                                                                 target/code-coverage/jacoco-it.exec,
135                                                                 ../provider-base/target/code-coverage/jacoco-ut.exec,
136                                                                 ../provider-base/target/code-coverage/jacoco-it.exec
137                                                         </dataFileIncludes>
138                                                 </configuration>
139                                         </execution>
140                                 </executions>
141                         </plugin>
142                 </plugins>
143         </build>
144 </project>