Test coverage in aai-client-provider
[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-2018 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>1.5.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
85
86
87         </dependencies>
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <artifactId>maven-resources-plugin</artifactId>
92                                 <version>2.6</version>
93                                 <executions>
94                                         <execution>
95                                                 <id>copy-xsl</id>
96                                                 <goals>
97                                                         <goal>copy-resources</goal>
98                                                 </goals>
99                                                 <phase>validate</phase>
100                                                 <configuration>
101                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
102                                                         <resources>
103                                                                 <resource>
104                                                                         <directory>src/main/resources/xsl</directory>
105                                                                         <includes>
106                                                                                 <include>*</include>
107                                                                         </includes>
108                                                                         <filtering>true</filtering>
109                                                                 </resource>
110                                                         </resources>
111                                                 </configuration>
112                                         </execution>
113                                         <execution>
114                                                 <id>copy-properties</id>
115                                                 <goals>
116                                                         <goal>copy-resources</goal>
117                                                 </goals>
118                                                 <phase>validate</phase>
119                                                 <configuration>
120                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
121                                                         <resources>
122                                                                 <resource>
123                                                                         <directory>src/main/resources</directory>
124                                                                         <includes>
125                                                                                 <include>*.properties</include>
126                                                                         </includes>
127                                                                         <filtering>true</filtering>
128                                                                 </resource>
129                                                         </resources>
130                                                 </configuration>
131                                         </execution>
132                                 </executions>
133                         </plugin>
134                         <plugin>
135                                 <groupId>org.apache.felix</groupId>
136                                 <artifactId>maven-bundle-plugin</artifactId>
137                                 <version>${bundle.plugin.version}</version>
138                                 <extensions>true</extensions>
139                                 <configuration>
140                                         <instructions>
141                                                 <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>
142                                                 <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>
143                                                 <Export-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*</Export-Package>
144                                                 <Import-Package>groovy.lang;resolution:=optional,
145                                                     org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
146                                                 <DynamicImport-Package>*</DynamicImport-Package>
147                                                 <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
148                                         </instructions>
149                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
150                                 </configuration>
151                         </plugin>
152                 </plugins>
153                 <pluginManagement>
154                         <plugins>
155                         </plugins>
156                 </pluginManagement>
157         </build>
158         <version>1.5.0-SNAPSHOT</version>
159 </project>