Release appc
[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-2018 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   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>2.6.0-SNAPSHOT</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-config-data-services-provider</artifactId>
33         <packaging>bundle</packaging>
34         <name>APPC Data Services - Provider</name>
35         <url>http://maven.apache.org</url>
36         <properties>
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38         </properties>
39         <dependencies>
40                 <dependency>
41                         <groupId>equinoxSDK381</groupId>
42                         <artifactId>org.eclipse.osgi</artifactId>
43                         <version>${equinox.osgi.version}</version>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.onap.ccsdk.sli.core</groupId>
47                         <artifactId>sli-provider</artifactId>
48                         <scope>compile</scope>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.apache.commons</groupId>
52                         <artifactId>commons-lang3</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
56                         <artifactId>sql-resource-provider</artifactId>
57                         <version>${ccsdk.sli.adaptors.version}</version>
58                         <scope>compile</scope>
59                 </dependency>
60
61                 <dependency>
62                         <groupId>commons-io</groupId>
63                         <artifactId>commons-io</artifactId>
64                 </dependency>
65                 <dependency>
66                      <groupId>ch.qos.logback</groupId>
67                      <artifactId>logback-classic</artifactId>
68                      <version>${logback.version}</version>
69                 </dependency>
70
71                 <dependency>
72                         <groupId>com.att.eelf</groupId>
73                         <artifactId>eelf-core</artifactId>
74                        <exclusions>
75                             <exclusion>
76                                  <groupId>ch.qos.logback</groupId>
77                                  <artifactId>logback-classic</artifactId>
78                             </exclusion>
79                         </exclusions>
80                 </dependency>
81
82                 <dependency>
83                         <groupId>junit</groupId>
84                         <artifactId>junit</artifactId>
85                         <scope>test</scope>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.mockito</groupId>
89                         <artifactId>mockito-core</artifactId>
90                 </dependency>
91                 <dependency>
92                         <groupId>com.fasterxml.jackson.core</groupId>
93                         <artifactId>jackson-databind</artifactId>
94                 </dependency>
95
96         </dependencies>
97         <build>
98                 <plugins>
99                         <plugin>
100                                 <artifactId>maven-resources-plugin</artifactId>
101                                 <executions>
102                                         <execution>
103                                                 <id>copy-xsl</id>
104                                                 <goals>
105                                                         <goal>copy-resources</goal>
106                                                 </goals>
107                                                 <phase>validate</phase>
108                                                 <configuration>
109                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
110                                                         <resources>
111                                                                 <resource>
112                                                                         <directory>src/main/resources/xsl</directory>
113                                                                         <includes>
114                                                                                 <include>*</include>
115                                                                         </includes>
116                                                                         <filtering>true</filtering>
117                                                                 </resource>
118                                                         </resources>
119                                                 </configuration>
120                                         </execution>
121                                         <execution>
122                                                 <id>copy-properties</id>
123                                                 <goals>
124                                                         <goal>copy-resources</goal>
125                                                 </goals>
126                                                 <phase>validate</phase>
127                                                 <configuration>
128                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
129                                                         <resources>
130                                                                 <resource>
131                                                                         <directory>src/main/resources</directory>
132                                                                         <includes>
133                                                                                 <include>*.properties</include>
134                                                                         </includes>
135                                                                         <filtering>true</filtering>
136                                                                 </resource>
137                                                         </resources>
138                                                 </configuration>
139                                         </execution>
140                                 </executions>
141                         </plugin>
142                         <plugin>
143                                 <groupId>org.apache.felix</groupId>
144                                 <artifactId>maven-bundle-plugin</artifactId>
145                                 <version>${bundle.plugin.version}</version>
146                                 <extensions>true</extensions>
147                                 <configuration>
148                                         <instructions>
149                                                 <Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName>
150                                                 <Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
151                                                 <Export-Package>org.onap.appc.data.services</Export-Package>
152                                                 <Import-Package>groovy.lang;resolution:=optional,
153                                                     org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
154                                                 <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
155                                                 <DynamicImport-Package>*</DynamicImport-Package>
156                                         </instructions>
157                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
158                                 </configuration>
159                         </plugin>
160                 </plugins>
161         </build>
162         <version>1.6.0</version>
163 </project>