Add missing license text to pom files, part 1
[appc.git] / appc-config / appc-data-services / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   ECOMP is a trademark and service mark of AT&T Intellectual Property.
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</groupId>
28                 <artifactId>appc-config-data-services</artifactId>
29                 <version>1.3.0-SNAPSHOT</version>
30         </parent>
31         <artifactId>appc-config-data-services-provider</artifactId>
32         <packaging>bundle</packaging>
33         <name>APPC Data Services - Provider</name>
34         <url>http://maven.apache.org</url>
35         <properties>
36                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37         </properties>
38         <dependencies>
39                 <dependency>
40                         <groupId>equinoxSDK381</groupId>
41                         <artifactId>org.eclipse.osgi</artifactId>
42                         <version>${equinox.osgi.version}</version>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.onap.ccsdk.sli.core</groupId>
46                         <artifactId>sli-provider</artifactId>
47                         <scope>compile</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
51                         <artifactId>sql-resource-provider</artifactId>
52                         <version>${ccsdk.sli.adaptors.version}</version>
53                         <scope>compile</scope>
54                 </dependency>
55
56                 <dependency>
57                         <groupId>commons-io</groupId>
58                         <artifactId>commons-io</artifactId>
59                 </dependency>
60
61                 <dependency>
62                         <groupId>com.att.eelf</groupId>
63                         <artifactId>eelf-core</artifactId>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>junit</groupId>
68                         <artifactId>junit</artifactId>
69                         <scope>test</scope>
70                 </dependency>
71                 <dependency>
72                         <groupId>com.fasterxml.jackson.core</groupId>
73                         <artifactId>jackson-databind</artifactId>
74                 </dependency>
75
76         </dependencies>
77         <build>
78                 <plugins>
79                         <plugin>
80                                 <artifactId>maven-resources-plugin</artifactId>
81                                 <executions>
82                                         <execution>
83                                                 <id>copy-xsl</id>
84                                                 <goals>
85                                                         <goal>copy-resources</goal>
86                                                 </goals>
87                                                 <phase>validate</phase>
88                                                 <configuration>
89                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
90                                                         <resources>
91                                                                 <resource>
92                                                                         <directory>src/main/resources/xsl</directory>
93                                                                         <includes>
94                                                                                 <include>*</include>
95                                                                         </includes>
96                                                                         <filtering>true</filtering>
97                                                                 </resource>
98                                                         </resources>
99                                                 </configuration>
100                                         </execution>
101                                         <execution>
102                                                 <id>copy-properties</id>
103                                                 <goals>
104                                                         <goal>copy-resources</goal>
105                                                 </goals>
106                                                 <phase>validate</phase>
107                                                 <configuration>
108                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
109                                                         <resources>
110                                                                 <resource>
111                                                                         <directory>src/main/resources</directory>
112                                                                         <includes>
113                                                                                 <include>*.properties</include>
114                                                                         </includes>
115                                                                         <filtering>true</filtering>
116                                                                 </resource>
117                                                         </resources>
118                                                 </configuration>
119                                         </execution>
120                                 </executions>
121                         </plugin>
122                         <plugin>
123                                 <groupId>org.apache.felix</groupId>
124                                 <artifactId>maven-bundle-plugin</artifactId>
125                                 <version>${bundle.plugin.version}</version>
126                                 <extensions>true</extensions>
127                                 <configuration>
128                                         <instructions>
129                                                 <Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName>
130                                                 <Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
131                                                 <Export-Package>org.onap.appc.data.services</Export-Package>
132                                                 <Import-Package>*</Import-Package>
133                                                 <DynamicImport-Package>*</DynamicImport-Package>
134                                         </instructions>
135                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
136                                 </configuration>
137                         </plugin>
138                 </plugins>
139                 <pluginManagement>
140                         <plugins>
141                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
142                                         only. It has no influence on the Maven build itself. -->
143                                 <plugin>
144                                         <groupId>org.eclipse.m2e</groupId>
145                                         <artifactId>lifecycle-mapping</artifactId>
146                                         <version>1.0.0</version>
147                                         <configuration>
148                                                 <lifecycleMappingMetadata>
149                                                         <pluginExecutions>
150                                                                 <pluginExecution>
151                                                                         <pluginExecutionFilter>
152                                                                                 <groupId>
153                                                                                         com.brocade.developer
154                                                                                 </groupId>
155                                                                                 <artifactId>
156                                                                                         providermodule-plugin
157                                                                                 </artifactId>
158                                                                                 <versionRange>
159                                                                                         [1.2.0.100-SNAPSHOT,)
160                                                                                 </versionRange>
161                                                                                 <goals>
162                                                                                         <goal>process</goal>
163                                                                                 </goals>
164                                                                         </pluginExecutionFilter>
165                                                                         <action>
166                                                                                 <ignore />
167                                                                         </action>
168                                                                 </pluginExecution>
169                                                         </pluginExecutions>
170                                                 </lifecycleMappingMetadata>
171                                         </configuration>
172                                 </plugin>
173                         </plugins>
174                 </pluginManagement>
175         </build>
176 </project>