Change nexus values to properties
[appc.git] / app-c / appc / 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.0.0</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.1.2</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>com.att.nsa</groupId>
76                         <artifactId>saClientLibrary</artifactId>
77                 </dependency>
78                 <dependency>
79                         <groupId>com.att.nsa</groupId>
80                         <artifactId>cambriaClient</artifactId>
81                 </dependency>
82                 <dependency>
83                         <groupId>org.functionaljava</groupId>
84                         <artifactId>functionaljava</artifactId>
85                         <version>4.2</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.apache.httpcomponents</groupId>
89                         <artifactId>httpcore</artifactId>
90                         <version>4.4.1</version>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.apache.httpcomponents</groupId>
94                         <artifactId>httpclient</artifactId>
95                         <version>4.4.1</version>
96                 </dependency>
97
98                 <dependency>
99                         <groupId>org.openecomp.appc</groupId>
100                         <artifactId>appc-license-manager-api</artifactId>
101                         <!-- <version>${project.version}</version> -->
102                         <version>1.0.0</version>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>com.google.code.gson</groupId>
107                         <artifactId>gson</artifactId>
108                 </dependency>
109         </dependencies>
110
111
112         <build>
113                 <plugins>
114
115                         <!-- ================================================== -->
116                         <!-- Set the JDK compiler version. -->
117                         <!-- ================================================== -->
118                         <plugin>
119                                 <groupId>org.apache.maven.plugins</groupId>
120                                 <artifactId>maven-compiler-plugin</artifactId>
121                                 <!-- <inherited>true</inherited> -->
122                                 <configuration>
123                                         <source>1.7</source>
124                                         <target>1.7</target>
125                                 </configuration>
126                         </plugin>
127
128                         <plugin>
129                                 <groupId>org.apache.felix</groupId>
130                                 <artifactId>maven-bundle-plugin</artifactId>
131                                 <extensions>true</extensions>
132                                 <configuration>
133                                         <instructions>
134                                                 <Bundle-SymbolicName>org.openecomp.appc.sdc.listener</Bundle-SymbolicName>
135                                                 <!--Bundle-Activator>org.openecomp.appc.sdc.listener.AppcAsdcListenerActivator</Bundle-Activator -->
136                                                 <Export-Package>org.openecomp.appc.sdc.listener</Export-Package>
137                                                 <Import-Package>
138                                                         org.openecomp.appc.licmgr,
139                                                         org.openecomp.appc.adapter.dmaap,
140                                                         !ch.qos.*,
141                                                         !com.att.*,
142                                                         !fj.*,
143                                                         !groovy.lang,
144                                                         !javax.jms,
145                                                         !javax.mail.*,
146                                                         !org.apache.log4j.*,
147                                                         !org.codehaus.commons.compiler,
148                                                         !org.codehaus.groovy.*,
149                                                         !org.codehaus.janino,
150                                                         !org.jasypt.*,
151                                                         !org.yaml.snakeyaml.*,
152                                                         !com.ibm.icu.text,
153                                                         !org.apache.log,
154                                                         !com.sun.faces.spi,
155                                                         *
156                                                 </Import-Package>
157                                                 <Embed-Dependency>
158                                                         sdc-distribution-client, appc-common,
159                                                         appc-dmaap-adapter-bundle, appc-license-manager-api,
160                                                         snakeyaml,
161                                                         logback-core,
162                                                         logback-classic, eelf-core,
163                                                         saClientLibrary,
164                                                         cambriaClient,
165                                                         functionaljava,
166                                                         httpcore,httpclient,
167                                                         gson;scope=compile|runtime;inline=false
168                                                 </Embed-Dependency>
169                                                 <Embed-Transitive>true</Embed-Transitive>
170                                         </instructions>
171                                 </configuration>
172                         </plugin>
173                 </plugins>
174         </build>
175 </project>