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