[VERSION] Update dependency versions
[sdnc/core.git] / sli / recording / pom.xml
1 <?xml version="1.0"?>
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.openecomp.sdnc.core</groupId>
6     <artifactId>sli</artifactId>
7     <version>1.0.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sli-recording</artifactId>
10   <packaging>bundle</packaging>
11   <name>SLI - Recording</name>
12   <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14   </properties>
15   <dependencies>
16     <dependency>
17       <groupId>junit</groupId>
18       <artifactId>junit</artifactId>
19       <version>3.8.1</version>
20       <scope>test</scope>
21     </dependency>
22                 <dependency>
23                         <groupId>org.openecomp.sdnc.core</groupId>
24                         <artifactId>sli-common</artifactId>
25                         <version>${project.version}</version>
26                         <scope>compile</scope>
27                 </dependency>
28                 <dependency>
29                         <groupId>equinoxSDK381</groupId>
30                         <artifactId>org.eclipse.osgi</artifactId>
31                         <version>${equinox.osgi.version}</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.slf4j</groupId>
35                         <artifactId>slf4j-api</artifactId>
36                         <version>${slf4j.version}</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>jcl-over-slf4j</artifactId>
41                         <version>${slf4j.version}</version>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>commons-lang</groupId>
46                         <artifactId>commons-lang</artifactId>
47                         <version>2.6</version>
48                         <scope>compile</scope>
49                 </dependency>
50
51   </dependencies>
52
53   <build>
54                 <plugins>
55                         <plugin>
56                                 <groupId>org.apache.felix</groupId>
57                                 <artifactId>maven-bundle-plugin</artifactId>
58                                 <version>${bundle.plugin.version}</version>
59                                 <extensions>true</extensions>
60                                 <configuration>
61                                         <instructions>
62                                                 <Bundle-Activator>org.openecomp.sdnc.sli.recording.RecordingActivator</Bundle-Activator>
63                                                 <Export-Package>org.openecomp.sdnc.sli.recording;version=${project.version}</Export-Package>
64                                                 <Import-Package>*</Import-Package>
65                                                 <Embed-Transitive>true</Embed-Transitive>
66                                         </instructions>
67
68
69                                 </configuration>
70
71                         </plugin>
72
73
74                 </plugins>
75         </build>
76   <description>SLI Recording is an OSGi bundle that implements recording service for the service logic record node.</description>
77 </project>