blob: f02df86e9fe2f14a7ddc247bf192403847e23dca [file] [log] [blame]
Joss Armstrong09da4f92019-01-30 13:51:13 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady13c03532019-02-22 13:37:19 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Joss Armstrong09da4f92019-01-30 13:51:13 +00007 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>
Taka Cho52cf1a82019-03-13 14:40:15 -040051 <exclusions>
52 <exclusion>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-databind</artifactId>
55 </exclusion>
56 </exclusions>
57 </dependency>
58
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 <version>2.8.11.3</version>
Joss Armstrong09da4f92019-01-30 13:51:13 +000063 </dependency>
64
65
66 <dependency>
67 <groupId>commons-io</groupId>
68 <artifactId>commons-io</artifactId>
69 <version>2.5</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.commons</groupId>
73 <artifactId>commons-lang3</artifactId>
74 </dependency>
Patrick Brady13c03532019-02-22 13:37:19 -080075 <dependency>
76 <groupId>ch.qos.logback</groupId>
77 <artifactId>logback-classic</artifactId>
78 <version>${logback.version}</version>
79 </dependency>
Joss Armstrong09da4f92019-01-30 13:51:13 +000080 <dependency>
81 <groupId>com.att.eelf</groupId>
82 <artifactId>eelf-core</artifactId>
83 <exclusions>
84 <exclusion>
85 <groupId>ch.qos.logback</groupId>
86 <artifactId>logback-classic</artifactId>
87 </exclusion>
88 </exclusions>
89 </dependency>
90
91 <dependency>
92 <groupId>junit</groupId>
93 <artifactId>junit</artifactId>
94 <scope>test</scope>
95 </dependency>
Patrick Brady13c03532019-02-22 13:37:19 -080096 <dependency>
97 <groupId>org.osgi</groupId>
98 <artifactId>org.osgi.core</artifactId>
99 <scope>provided</scope>
100 </dependency>
Joss Armstrong09da4f92019-01-30 13:51:13 +0000101
102
103 </dependencies>
104 <build>
105 <plugins>
106 <plugin>
107 <artifactId>maven-resources-plugin</artifactId>
108 <version>2.6</version>
109 <executions>
110 <execution>
111 <id>copy-xsl</id>
112 <goals>
113 <goal>copy-resources</goal>
114 </goals>
115 <phase>validate</phase>
116 <configuration>
117 <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
118 <resources>
119 <resource>
120 <directory>src/main/resources/xsl</directory>
121 <includes>
122 <include>*</include>
123 </includes>
124 <filtering>true</filtering>
125 </resource>
126 </resources>
127 </configuration>
128 </execution>
129 <execution>
130 <id>copy-properties</id>
131 <goals>
132 <goal>copy-resources</goal>
133 </goals>
134 <phase>validate</phase>
135 <configuration>
136 <outputDirectory>${basedir}/target/properties/</outputDirectory>
137 <resources>
138 <resource>
139 <directory>src/main/resources</directory>
140 <includes>
141 <include>*.properties</include>
142 </includes>
143 <filtering>true</filtering>
144 </resource>
145 </resources>
146 </configuration>
147 </execution>
148 </executions>
149 </plugin>
150 <plugin>
151 <groupId>org.apache.felix</groupId>
152 <artifactId>maven-bundle-plugin</artifactId>
153 <version>${bundle.plugin.version}</version>
154 <extensions>true</extensions>
155 <configuration>
156 <instructions>
157 <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>
158 <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>
159 <Export-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*</Export-Package>
160 <Import-Package>groovy.lang;resolution:=optional,
161 org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
162 <DynamicImport-Package>*</DynamicImport-Package>
163 <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
164 </instructions>
165 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
166 </configuration>
167 </plugin>
168 </plugins>
169 <pluginManagement>
170 <plugins>
171 </plugins>
172 </pluginManagement>
173 </build>
174 <version>1.5.0-SNAPSHOT</version>
175</project>