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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>2.7.2</version>
29                 <relativePath/>
30         </parent>
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-aai-client-provider</artifactId>
33         <packaging>bundle</packaging>
34         <name>APPC AAI Client - Provider</name>
35
36         <properties>
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38         </properties>
39         <dependencies>
40                 <dependency>
41                         <groupId>org.onap.ccsdk.sli.core</groupId>
42                         <artifactId>sli-provider</artifactId>
43                         <scope>compile</scope>
44                 </dependency>
45
46                 <dependency>
47                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
48                         <artifactId>aai-service-provider</artifactId>
49                         <scope>compile</scope>
50                 </dependency>
51
52
53                 <dependency>
54                         <groupId>commons-io</groupId>
55                         <artifactId>commons-io</artifactId>
56                         <version>2.5</version>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.apache.commons</groupId>
60                         <artifactId>commons-lang3</artifactId>
61                 </dependency>
62                 <dependency>
63                         <groupId>ch.qos.logback</groupId>
64                         <artifactId>logback-classic</artifactId>
65                         <version>${logback.version}</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>com.att.eelf</groupId>
69                         <artifactId>eelf-core</artifactId>
70                         <exclusions>
71                             <exclusion>
72                                  <groupId>ch.qos.logback</groupId>
73                                  <artifactId>logback-classic</artifactId>
74                             </exclusion>
75                         </exclusions>
76                 </dependency>
77
78                 <dependency>
79                         <groupId>junit</groupId>
80                         <artifactId>junit</artifactId>
81                         <scope>test</scope>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.osgi</groupId>
85                         <artifactId>org.osgi.core</artifactId>
86                         <scope>provided</scope>
87                 </dependency>
88
89
90         </dependencies>
91         <build>
92                 <plugins>
93                         <plugin>
94                                 <artifactId>maven-resources-plugin</artifactId>
95                                 <version>2.6</version>
96                                 <executions>
97                                         <execution>
98                                                 <id>copy-xsl</id>
99                                                 <goals>
100                                                         <goal>copy-resources</goal>
101                                                 </goals>
102                                                 <phase>validate</phase>
103                                                 <configuration>
104                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
105                                                         <resources>
106                                                                 <resource>
107                                                                         <directory>src/main/resources/xsl</directory>
108                                                                         <includes>
109                                                                                 <include>*</include>
110                                                                         </includes>
111                                                                         <filtering>true</filtering>
112                                                                 </resource>
113                                                         </resources>
114                                                 </configuration>
115                                         </execution>
116                                         <execution>
117                                                 <id>copy-properties</id>
118                                                 <goals>
119                                                         <goal>copy-resources</goal>
120                                                 </goals>
121                                                 <phase>validate</phase>
122                                                 <configuration>
123                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
124                                                         <resources>
125                                                                 <resource>
126                                                                         <directory>src/main/resources</directory>
127                                                                         <includes>
128                                                                                 <include>*.properties</include>
129                                                                         </includes>
130                                                                         <filtering>true</filtering>
131                                                                 </resource>
132                                                         </resources>
133                                                 </configuration>
134                                         </execution>
135                                 </executions>
136                         </plugin>
137                         <plugin>
138                                 <groupId>org.apache.felix</groupId>
139                                 <artifactId>maven-bundle-plugin</artifactId>
140                                 <version>${bundle.plugin.version}</version>
141                                 <extensions>true</extensions>
142                                 <configuration>
143                                         <instructions>
144                                                 <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>
145                                                 <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>
146                                                 <Export-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*</Export-Package>
147                                                 <Import-Package>groovy.lang;resolution:=optional,
148                                                     org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
149                                                 <DynamicImport-Package>*</DynamicImport-Package>
150                                                 <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
151                                         </instructions>
152                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
153                                 </configuration>
154                         </plugin>
155                 </plugins>
156                 <pluginManagement>
157                         <plugins>
158                         </plugins>
159                 </pluginManagement>
160         </build>
161         <version>1.7.2</version>
162 </project>