801ab7d6b413f8aaa75d9ee05e6b76eeb0f985e3
[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>org.mockito</groupId>
73                         <artifactId>mockito-core</artifactId>
74                 </dependency>
75                 <dependency>
76                         <groupId>com.fasterxml.jackson.core</groupId>
77                         <artifactId>jackson-databind</artifactId>
78                 </dependency>
79
80         </dependencies>
81         <build>
82                 <plugins>
83                         <plugin>
84                                 <artifactId>maven-resources-plugin</artifactId>
85                                 <executions>
86                                         <execution>
87                                                 <id>copy-xsl</id>
88                                                 <goals>
89                                                         <goal>copy-resources</goal>
90                                                 </goals>
91                                                 <phase>validate</phase>
92                                                 <configuration>
93                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
94                                                         <resources>
95                                                                 <resource>
96                                                                         <directory>src/main/resources/xsl</directory>
97                                                                         <includes>
98                                                                                 <include>*</include>
99                                                                         </includes>
100                                                                         <filtering>true</filtering>
101                                                                 </resource>
102                                                         </resources>
103                                                 </configuration>
104                                         </execution>
105                                         <execution>
106                                                 <id>copy-properties</id>
107                                                 <goals>
108                                                         <goal>copy-resources</goal>
109                                                 </goals>
110                                                 <phase>validate</phase>
111                                                 <configuration>
112                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
113                                                         <resources>
114                                                                 <resource>
115                                                                         <directory>src/main/resources</directory>
116                                                                         <includes>
117                                                                                 <include>*.properties</include>
118                                                                         </includes>
119                                                                         <filtering>true</filtering>
120                                                                 </resource>
121                                                         </resources>
122                                                 </configuration>
123                                         </execution>
124                                 </executions>
125                         </plugin>
126                         <plugin>
127                                 <groupId>org.apache.felix</groupId>
128                                 <artifactId>maven-bundle-plugin</artifactId>
129                                 <version>${bundle.plugin.version}</version>
130                                 <extensions>true</extensions>
131                                 <configuration>
132                                         <instructions>
133                                                 <Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName>
134                                                 <Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
135                                                 <Export-Package>org.onap.appc.data.services</Export-Package>
136                                                 <Import-Package>*</Import-Package>
137                                                 <DynamicImport-Package>*</DynamicImport-Package>
138                                         </instructions>
139                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
140                                 </configuration>
141                         </plugin>
142                 </plugins>
143         </build>
144 </project>