Karaf 4 for appc outbound
[appc.git] / appc-outbound / appc-aai-client / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START=======================================================\r
4   ONAP : APPC\r
5   ================================================================================\r
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.\r
7   Copyright (C) 2017 Amdocs\r
8   ================================================================================\r
9   Licensed under the Apache License, Version 2.0 (the "License");\r
10   you may not use this file except in compliance with the License.\r
11   You may obtain a copy of the License at\r
12   \r
13        http://www.apache.org/licenses/LICENSE-2.0\r
14   \r
15   Unless required by applicable law or agreed to in writing, software\r
16   distributed under the License is distributed on an "AS IS" BASIS,\r
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
18   See the License for the specific language governing permissions and\r
19   limitations under the License.\r
20   ============LICENSE_END=========================================================\r
21   -->\r
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
24         <modelVersion>4.0.0</modelVersion>\r
25         <parent>\r
26                 <groupId>org.onap.appc.parent</groupId>\r
27                 <artifactId>binding-parent</artifactId>\r
28                 <version>1.4.0-SNAPSHOT</version>\r
29                 <relativePath />\r
30         </parent>\r
31         <groupId>org.onap.appc</groupId>\r
32         <artifactId>appc-aai-client-provider</artifactId>\r
33         <packaging>bundle</packaging>\r
34         <name>APPC AAI Client - Provider</name>\r
35 \r
36         <properties>\r
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
38         </properties>\r
39         <dependencies>\r
40                 <dependency>\r
41                         <groupId>equinoxSDK381</groupId>\r
42                         <artifactId>org.eclipse.osgi</artifactId>\r
43                         <version>${equinox.osgi.version}</version>\r
44                 </dependency>\r
45                 <dependency>\r
46                         <groupId>org.onap.ccsdk.sli.core</groupId>\r
47                         <artifactId>sli-provider</artifactId>\r
48                         <scope>compile</scope>\r
49                 </dependency>\r
50 \r
51                 <dependency>\r
52                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>\r
53                         <artifactId>aai-service-provider</artifactId>\r
54                         <scope>compile</scope>\r
55                 </dependency>\r
56 \r
57 \r
58                 <dependency>\r
59                         <groupId>commons-io</groupId>\r
60                         <artifactId>commons-io</artifactId>\r
61                         <version>2.5</version>\r
62                 </dependency>\r
63         <dependency>\r
64                         <groupId>org.apache.commons</groupId>\r
65                         <artifactId>commons-lang3</artifactId>\r
66                 </dependency>\r
67 \r
68                 <dependency>\r
69                         <groupId>com.att.eelf</groupId>\r
70                         <artifactId>eelf-core</artifactId>\r
71                 </dependency>\r
72 \r
73                 <dependency>\r
74                         <groupId>junit</groupId>\r
75                         <artifactId>junit</artifactId>\r
76                         <scope>test</scope>\r
77                 </dependency>\r
78 \r
79 \r
80 \r
81         </dependencies>\r
82         <build>\r
83                 <plugins>\r
84                         <plugin>\r
85                                 <artifactId>maven-resources-plugin</artifactId>\r
86                                 <version>2.6</version>\r
87                                 <executions>\r
88                                         <execution>\r
89                                                 <id>copy-xsl</id>\r
90                                                 <goals>\r
91                                                         <goal>copy-resources</goal>\r
92                                                 </goals>\r
93                                                 <phase>validate</phase>\r
94                                                 <configuration>\r
95                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>\r
96                                                         <resources>\r
97                                                                 <resource>\r
98                                                                         <directory>src/main/resources/xsl</directory>\r
99                                                                         <includes>\r
100                                                                                 <include>*</include>\r
101                                                                         </includes>\r
102                                                                         <filtering>true</filtering>\r
103                                                                 </resource>\r
104                                                         </resources>\r
105                                                 </configuration>\r
106                                         </execution>\r
107                                         <execution>\r
108                                                 <id>copy-properties</id>\r
109                                                 <goals>\r
110                                                         <goal>copy-resources</goal>\r
111                                                 </goals>\r
112                                                 <phase>validate</phase>\r
113                                                 <configuration>\r
114                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>\r
115                                                         <resources>\r
116                                                                 <resource>\r
117                                                                         <directory>src/main/resources</directory>\r
118                                                                         <includes>\r
119                                                                                 <include>*.properties</include>\r
120                                                                         </includes>\r
121                                                                         <filtering>true</filtering>\r
122                                                                 </resource>\r
123                                                         </resources>\r
124                                                 </configuration>\r
125                                         </execution>\r
126                                 </executions>\r
127                         </plugin>\r
128                         <plugin>\r
129                                 <groupId>org.apache.felix</groupId>\r
130                                 <artifactId>maven-bundle-plugin</artifactId>\r
131                                 <version>${bundle.plugin.version}</version>\r
132                                 <extensions>true</extensions>\r
133                                 <configuration>\r
134                                         <instructions>\r
135                                                 <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>\r
136                                                 <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>\r
137                                                 <Export-Package>org.onap.appc.aai.client</Export-Package>\r
138                                                 <Import-Package>*</Import-Package>\r
139                                                 <DynamicImport-Package>*</DynamicImport-Package>\r
140                                                 <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>\r
141                                         </instructions>\r
142                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>\r
143                                 </configuration>\r
144                         </plugin>\r
145                 </plugins>\r
146                 <pluginManagement>\r
147                         <plugins>\r
148                         </plugins>\r
149                 </pluginManagement>\r
150         </build>\r
151 </project>\r