Update to use released 1.2.2 parent
[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>1.2.2</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.ccsdk.sli.core</groupId>
13         <artifactId>sli-provider</artifactId>
14         <version>0.4.2-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
25         <dependencyManagement>
26                 <dependencies>
27                         <dependency>
28                                 <groupId>org.onap.ccsdk.sli.core</groupId>
29                                 <artifactId>dblib-provider</artifactId>
30                                 <version>${project.version}</version>
31                         </dependency>
32                 </dependencies>
33         </dependencyManagement>
34         
35         <dependencies>
36                 <dependency>
37                         <groupId>org.onap.ccsdk.sli.core</groupId>
38                         <artifactId>sli-model</artifactId>
39                         <version>${project.version}</version>
40                         <scope>test</scope>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.onap.ccsdk.sli.core</groupId>
44                         <artifactId>sli-common</artifactId>
45                         <version>${project.version}</version>
46                         <scope>compile</scope>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.onap.ccsdk.sli.core</groupId>
50                         <artifactId>sli-provider-base</artifactId>
51                         <version>${project.version}</version>
52                         <scope>compile</scope>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.slf4j</groupId>
56                         <artifactId>slf4j-api</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>commons-lang</groupId>
60                         <artifactId>commons-lang</artifactId>
61                         <scope>compile</scope>
62                 </dependency>
63
64                 <dependency>
65                         <groupId>org.osgi</groupId>
66                         <artifactId>org.osgi.core</artifactId>
67                         <scope>provided</scope>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.opendaylight.controller</groupId>
71                         <artifactId>sal-binding-api</artifactId>
72                 </dependency>
73
74                 <!-- Testing Dependencies -->
75                 <dependency>
76                         <groupId>junit</groupId>
77                         <artifactId>junit</artifactId>
78                         <scope>test</scope>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>org.mockito</groupId>
83                         <artifactId>mockito-core</artifactId>
84                         <scope>test</scope>
85                 </dependency>
86                 <dependency>
87                         <groupId>org.apache.derby</groupId>
88                         <artifactId>derby</artifactId>
89                         <scope>test</scope>
90                 </dependency>
91         </dependencies>
92
93         <build>
94                 <plugins>
95                         <plugin>
96                                 <groupId>org.apache.felix</groupId>
97                                 <artifactId>maven-bundle-plugin</artifactId>
98                                 <extensions>true</extensions>
99                                 <configuration>
100                                         <instructions>
101                                                 <DynamicImport-Package>*</DynamicImport-Package>
102                                         </instructions>
103                                 </configuration>
104
105                         </plugin>
106                 </plugins>
107
108         </build>
109 </project>