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