Root pom parent and other cleanup
[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"
2         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                 <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-SNAPSHOT</version>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.openecomp.appc</groupId>
39                         <artifactId>appc-dmaap-adapter-bundle</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         </dependencies>
102
103
104         <build>
105                 <plugins>
106
107                         <!-- ================================================== -->
108                         <!-- Set the JDK compiler version. -->
109                         <!-- ================================================== -->
110                         <plugin>
111                                 <groupId>org.apache.maven.plugins</groupId>
112                                 <artifactId>maven-compiler-plugin</artifactId>
113                                 <!-- <inherited>true</inherited> -->
114                                 <configuration>
115                                         <source>1.7</source>
116                                         <target>1.7</target>
117                                 </configuration>
118                         </plugin>
119
120                         <plugin>
121                                 <groupId>org.apache.felix</groupId>
122                                 <artifactId>maven-bundle-plugin</artifactId>
123                                 <extensions>true</extensions>
124                                 <configuration>
125                                         <instructions>
126                                                 <Bundle-SymbolicName>org.openecomp.appc.sdc.listener</Bundle-SymbolicName>
127                                                 <!--Bundle-Activator>org.openecomp.appc.sdc.listener.AppcAsdcListenerActivator</Bundle-Activator -->
128                                                 <Export-Package>org.openecomp.appc.sdc.listener</Export-Package>
129                                                 <Import-Package>
130                                                         org.openecomp.appc.licmgr,
131                                                         org.openecomp.appc.adapter.dmaap,
132                                                         !ch.qos.*,
133                                                         !com.att.*,
134                                                         !fj.*,
135                                                         !groovy.lang,
136                                                         !javax.jms,
137                                                         !javax.mail.*,
138                                                         !org.apache.log4j.*,
139                                                         !org.codehaus.commons.compiler,
140                                                         !org.codehaus.groovy.*,
141                                                         !org.codehaus.janino,
142                                                         !org.jasypt.*,
143                                                         !org.yaml.snakeyaml.*,
144                                                         !com.ibm.icu.text,
145                                                         !org.apache.log,
146                                                         !com.sun.faces.spi,
147                                                         *;resolution:=optional
148                                                 </Import-Package>
149                                                 <Embed-Dependency>
150                                                         sdc-distribution-client, appc-common,
151                                                         appc-dmaap-adapter-bundle, appc-license-manager-api,
152                                                         snakeyaml,
153                                                         logback-core,
154                                                         logback-classic, eelf-core,
155                                                         saClientLibrary,
156                                                         cambriaClient,
157                                                         functionaljava,
158                                                         httpcore,httpclient,
159                                                         gson;scope=compile|runtime;inline=false
160                                                 </Embed-Dependency>
161                                                 <Embed-Transitive>true</Embed-Transitive>
162                                         </instructions>
163                                 </configuration>
164                         </plugin>
165                 </plugins>
166         </build>
167 </project>