Merge "[SDNC-30] summary"
[ccsdk/sli/adaptors.git] / aai-service / 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         <parent>
5                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
6                 <artifactId>aai-service</artifactId>
7                 <version>0.1.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>aai-service-provider</artifactId>
10         <packaging>bundle</packaging>
11         <name>AAI Interface Service - Provider</name>
12         <url>http://maven.apache.org</url>
13         <properties>
14                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15         </properties>
16         <dependencies>
17                 <dependency>
18                         <groupId>junit</groupId>
19                         <artifactId>junit</artifactId>
20                         <version>${junit.version}</version>
21                         <scope>test</scope>
22                 </dependency>
23                 <dependency>
24                         <groupId>org.mockito</groupId>
25                         <artifactId>mockito-core</artifactId>
26                         <version>${mockito.version}</version>
27                         <scope>test</scope>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.onap.ccsdk.sli.core</groupId>
31                         <artifactId>sli-common</artifactId>
32                         <version>${sdnctl.sli.version}</version>
33                         <scope>compile</scope>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.onap.ccsdk.sli.core</groupId>
37                         <artifactId>sli-provider</artifactId>
38                         <version>${sdnctl.sli.version}</version>
39                         <scope>compile</scope>
40                 </dependency>
41                 <dependency>
42                         <groupId>equinoxSDK381</groupId>
43                         <artifactId>org.eclipse.osgi</artifactId>
44                         <version>${equinox.osgi.version}</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.slf4j</groupId>
48                         <artifactId>slf4j-api</artifactId>
49                         <version>${slf4j.version}</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.slf4j</groupId>
53                         <artifactId>jcl-over-slf4j</artifactId>
54                         <version>${slf4j.version}</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>com.sun.jersey</groupId>
58                         <artifactId>jersey-client</artifactId>
59                         <version>${jersey.client.version}</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>com.sun.jersey</groupId>
63                         <artifactId>jersey-core</artifactId>
64                         <version>${jersey.version}</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.apache.httpcomponents</groupId>
68                         <artifactId>httpcore-osgi</artifactId>
69                         <version>${apache.httpcomponents.core.version}</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.apache.httpcomponents</groupId>
73                         <artifactId>httpclient-osgi</artifactId>
74                         <version>${apache.httpcomponents.client.version}</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>com.fasterxml.jackson.core</groupId>
78                         <artifactId>jackson-databind</artifactId>
79                         <!-- <type>bundle</type> -->
80                         <version>${jackson.version}</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>com.fasterxml.jackson.module</groupId>
84                         <artifactId>jackson-module-jaxb-annotations</artifactId>
85                         <version>${jackson.version}</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>com.fasterxml.jackson.core</groupId>
89                         <artifactId>jackson-annotations</artifactId>
90                         <!-- <type>bundle</type> -->
91                         <version>${jackson.version}</version>
92                 </dependency>
93                 <dependency>
94                         <groupId>com.fasterxml.jackson.core</groupId>
95                         <artifactId>jackson-core</artifactId>
96                         <!-- <type>bundle</type> -->
97                         <version>${jackson.version}</version>
98                 </dependency>
99                 <dependency>
100                         <groupId>commons-lang</groupId>
101                         <artifactId>commons-lang</artifactId>
102                         <version>${commons.lang.version}</version>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.jvnet.jaxb2_commons</groupId>
106                         <artifactId>jaxb2-basics-runtime</artifactId>
107                         <version>0.6.4</version>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.jsoup</groupId>
111                         <artifactId>jsoup</artifactId>
112                         <version>1.8.3</version>
113                         <scope>test</scope>
114                 </dependency>
115                 <dependency>
116                         <groupId>org.springframework</groupId>
117                         <artifactId>spring-core</artifactId>
118                         <version>4.3.5.RELEASE</version>
119                         <scope>test</scope>
120                 </dependency>
121         </dependencies>
122
123         <build>
124                 <plugins>
125                         <plugin>
126                                 <groupId>org.apache.felix</groupId>
127                                 <artifactId>maven-bundle-plugin</artifactId>
128                                 <version>${bundle.plugin.version}</version>
129                                 <extensions>true</extensions>
130                                 <configuration>
131                                         <instructions>
132                                                 <Bundle-SymbolicName>org.openecomp.sdnc.sli.aai</Bundle-SymbolicName>
133                                                 <Bundle-Activator>org.onap.ccsdk.sli.adaptors.aai.AAIServiceActivator</Bundle-Activator>
134                                                 <Export-Package>org.onap.ccsdk.sli.adaptors.aai.*,org.openecomp.aai.inventory.v11.*</Export-Package>
135                         <Import-Package>org.openecomp.sdnc.sli.*,org.osgi.framework.*,org.slf4j.*,org.apache.commons.lang3.*,javax.xml.bind.annotation.*,javax.ws.rs.*,javax.ws.rs.core.*,com.fasterxml.jackson.module.jaxb.*,com.sun.jersey.client.urlconnection.*,com.sun.jersey.api.client.config.*,com.fasterxml.jackson.databind.type.*,com.fasterxml.jackson.module.jaxb.*,com.fasterxml.jackson.databind.introspect.*,com.fasterxml.jackson.annotation.*,com.fasterxml.jackson.databind.*</Import-Package>
136                                                 <Import-Package>*</Import-Package>
137                                                 <Embed-Transitive>true</Embed-Transitive>
138                                         </instructions>
139
140                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
141                                 </configuration>
142                         </plugin>
143                         <plugin>
144                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
145                                 <artifactId>maven-jaxb2-plugin</artifactId>
146                                 <version>0.13.1</version>
147                                 <executions>
148                                         <execution>
149                                         <id>gen-xjc</id>
150                                                 <goals>
151                                                         <goal>generate</goal>
152                                                 </goals>
153                                         </execution>
154                                 </executions>
155                                 <configuration>
156                                 <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
157                                         <schemaIncludes>
158                                                 <value>aai_schema_v11.xsd</value>
159                                         </schemaIncludes>
160                                         <bindingIncludes>
161                                                 <include>aai-schema-bindings.xjb</include>
162                                         </bindingIncludes>
163                                         <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
164                                         <generatePackage>org.openecomp.aai.inventory.v11</generatePackage>
165                                         <extension>true</extension>
166                                 <args>
167                                         <arg>-Xannotate</arg>
168                                 </args>
169                                         <plugins>
170                                                 <plugin>
171                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
172                                                 <artifactId>jaxb2-basics-annotate</artifactId>
173                                                         <version>0.6.4</version>
174                                                 </plugin>
175                                         </plugins>
176                                 </configuration>
177                         </plugin>
178                 </plugins>
179                 <pluginManagement>
180                         <plugins>
181                                 <!--This plugin's configuration is used to store Eclipse m2e settings
182                                         only. It has no influence on the Maven build itself. -->
183                                 <plugin>
184                                         <groupId>org.eclipse.m2e</groupId>
185                                         <artifactId>lifecycle-mapping</artifactId>
186                                         <version>1.0.0</version>
187                                         <configuration>
188                                                 <lifecycleMappingMetadata>
189                                                         <pluginExecutions>
190                                                                 <pluginExecution>
191                                                                         <pluginExecutionFilter>
192                                                                                 <groupId>
193                                                                                         com.brocade.developer
194                                                                                 </groupId>
195                                                                                 <artifactId>
196                                                                                         providermodule-plugin
197                                                                                 </artifactId>
198                                                                                 <versionRange>
199                                                                                         [1.2.0.100-SNAPSHOT,)
200                                                                                 </versionRange>
201                                                                                 <goals>
202                                                                                         <goal>process</goal>
203                                                                                 </goals>
204                                                                         </pluginExecutionFilter>
205                                                                         <action>
206                                                                                 <ignore />
207                                                                         </action>
208                                                                 </pluginExecution>
209                                                         </pluginExecutions>
210                                                 </lifecycleMappingMetadata>
211                                         </configuration>
212                                 </plugin>
213                         </plugins>
214                 </pluginManagement>
215         </build>
216 </project>