Merge of new rebased code
[appc.git] / appc-asdc-listener / appc-asdc-listener-bundle / pom.xml
1 <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">
2         <modelVersion>4.0.0</modelVersion>
3
4
5         <parent>
6                 <artifactId>appc-asdc-listener</artifactId>
7                 <groupId>org.openecomp.appc</groupId>
8                 <version>1.1.0-SNAPSHOT</version>
9         </parent>
10
11         <properties>
12                 <snakeyaml.version>1.12</snakeyaml.version>
13         </properties>
14
15         <artifactId>appc-asdc-listener-bundle</artifactId>
16         <packaging>bundle</packaging>
17
18         <dependencies>
19
20                 <dependency>
21                         <groupId>equinoxSDK381</groupId>
22                         <artifactId>org.eclipse.osgi</artifactId>
23                 </dependency>
24
25                 <dependency>
26                         <groupId>org.json</groupId>
27                         <artifactId>json</artifactId>
28                         <scope>compile</scope>
29                 </dependency>
30
31                 <dependency>
32                         <groupId>org.openecomp.sdc</groupId>
33                         <artifactId>sdc-distribution-client</artifactId>
34                         <version>1.0.0</version>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.openecomp.appc</groupId>
39                         <artifactId>appc-message-adapter-api</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.yaml</groupId>
45                         <artifactId>snakeyaml</artifactId>
46                         <version>${snakeyaml.version}</version>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>org.openecomp.appc</groupId>
51                         <artifactId>appc-common</artifactId>
52                         <version>${project.version}</version>
53                 </dependency>
54
55
56                 <dependency>
57                         <groupId>junit</groupId>
58                         <artifactId>junit</artifactId>
59                         <scope>compile</scope>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>com.att.eelf</groupId>
64                         <artifactId>eelf-core</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>ch.qos.logback</groupId>
68                         <artifactId>logback-core</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>ch.qos.logback</groupId>
72                         <artifactId>logback-classic</artifactId>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.functionaljava</groupId>
76                         <artifactId>functionaljava</artifactId>
77                         <version>4.2</version>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.apache.httpcomponents</groupId>
81                         <artifactId>httpcore</artifactId>
82                         <version>4.4.1</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.apache.httpcomponents</groupId>
86                         <artifactId>httpclient</artifactId>
87                         <version>4.4.1</version>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>org.openecomp.appc</groupId>
92                         <artifactId>appc-license-manager-api</artifactId>
93                         <!-- <version>${project.version}</version> -->
94                         <version>1.1.0-SNAPSHOT</version>
95                 </dependency>
96
97                 <dependency>
98                         <groupId>com.google.code.gson</groupId>
99                         <artifactId>gson</artifactId>
100                 </dependency>
101
102                 <dependency>
103                         <groupId>org.openecomp.sdc</groupId>
104                         <artifactId>openecomp-tosca-lib</artifactId>
105                         <version>${toscalib.version}</version>
106                 </dependency>
107
108                 <dependency>
109                         <groupId>org.apache.velocity</groupId>
110                         <artifactId>velocity</artifactId>
111                         <version>1.7</version>
112                 </dependency>
113
114                 <dependency>
115                         <groupId>org.opendaylight.yangtools</groupId>
116                         <artifactId>yang-parser-impl</artifactId>
117                         <version>${odl.yangtools.version}</version>
118                 </dependency>
119
120                 <dependency>
121                         <groupId>org.opendaylight.mdsal.model</groupId>
122                         <artifactId>ietf-inet-types</artifactId>
123                         <version>${odl.ietf-inet-types.version}</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>org.opendaylight.mdsal.model</groupId>
127                         <artifactId>ietf-yang-types</artifactId>
128                         <version>${odl.ietf-yang-types.version}</version>
129                 </dependency>
130         </dependencies>
131
132
133         <build>
134                 <plugins>
135
136                         <!-- ================================================== -->
137                         <!-- Set the JDK compiler version. -->
138                         <!-- ================================================== -->
139                         <plugin>
140                                 <groupId>org.apache.maven.plugins</groupId>
141                                 <artifactId>maven-compiler-plugin</artifactId>
142                                 <!-- <inherited>true</inherited> -->
143                                 <configuration>
144                                         <source>1.7</source>
145                                         <target>1.7</target>
146                                 </configuration>
147                         </plugin>
148
149                         <plugin>
150                                 <groupId>org.apache.felix</groupId>
151                                 <artifactId>maven-bundle-plugin</artifactId>
152                                 <extensions>true</extensions>
153                                 <configuration>
154                                         <instructions>
155                                                 <Bundle-SymbolicName>org.openecomp.appc.sdc.listener</Bundle-SymbolicName>
156                                                 <!--Bundle-Activator>org.openecomp.appc.sdc.listener.AppcAsdcListenerActivator</Bundle-Activator -->
157                                                 <Export-Package>org.openecomp.appc.sdc.listener</Export-Package>
158                                                 <Import-Package>
159                                                         org.openecomp.appc.licmgr,
160                                                         org.openecomp.appc.adapter.messaging.*,
161                                                         com.att.eelf.*,
162                                                         *;resolution:=optional
163                                                 </Import-Package>
164                                                 <Embed-Dependency>
165                                                         sdc-distribution-client,snakeyaml,
166                                                         saClientLibrary,cambriaClient,saToolkit,
167                                                         functionaljava,httpcore,httpclient,gson;
168                                                         scope=compile|runtime;inline=false
169                                                 </Embed-Dependency>
170                                                 <Embed-Transitive>true</Embed-Transitive>
171                                         </instructions>
172                                 </configuration>
173                         </plugin>
174                 </plugins>
175         </build>
176 </project>