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