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