Bump minor version
[appc.git] / appc-config / appc-data-services / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.openecomp.appc</groupId>
7                 <artifactId>appc-config-data-services</artifactId>
8                 <version>1.3.0-SNAPSHOT</version>
9         </parent>
10         <artifactId>appc-config-data-services-provider</artifactId>
11         <packaging>bundle</packaging>
12         <name>APPC Data Services - Provider</name>
13         <url>http://maven.apache.org</url>
14         <properties>
15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16         </properties>
17         <dependencies>
18                 <dependency>
19                         <groupId>equinoxSDK381</groupId>
20                         <artifactId>org.eclipse.osgi</artifactId>
21                         <version>${equinox.osgi.version}</version>
22                 </dependency>
23                 <dependency>
24                         <groupId>org.onap.ccsdk.sli.core</groupId>
25                         <artifactId>sli-provider</artifactId>
26                         <scope>compile</scope>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
30                         <artifactId>sql-resource-provider</artifactId>
31                         <version>${ccsdk.sli.adaptors.version}</version>
32                         <scope>compile</scope>
33                 </dependency>
34
35                 <dependency>
36                         <groupId>commons-io</groupId>
37                         <artifactId>commons-io</artifactId>
38                 </dependency>
39
40                 <dependency>
41                         <groupId>com.att.eelf</groupId>
42                         <artifactId>eelf-core</artifactId>
43                 </dependency>
44
45                 <dependency>
46                         <groupId>junit</groupId>
47                         <artifactId>junit</artifactId>
48                         <scope>test</scope>
49                 </dependency>
50                 <dependency>
51                         <groupId>com.fasterxml.jackson.core</groupId>
52                         <artifactId>jackson-databind</artifactId>
53                 </dependency>
54
55         </dependencies>
56         <build>
57                 <plugins>
58                         <plugin>
59                                 <artifactId>maven-resources-plugin</artifactId>
60                                 <executions>
61                                         <execution>
62                                                 <id>copy-xsl</id>
63                                                 <goals>
64                                                         <goal>copy-resources</goal>
65                                                 </goals>
66                                                 <phase>validate</phase>
67                                                 <configuration>
68                                                         <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
69                                                         <resources>
70                                                                 <resource>
71                                                                         <directory>src/main/resources/xsl</directory>
72                                                                         <includes>
73                                                                                 <include>*</include>
74                                                                         </includes>
75                                                                         <filtering>true</filtering>
76                                                                 </resource>
77                                                         </resources>
78                                                 </configuration>
79                                         </execution>
80                                         <execution>
81                                                 <id>copy-properties</id>
82                                                 <goals>
83                                                         <goal>copy-resources</goal>
84                                                 </goals>
85                                                 <phase>validate</phase>
86                                                 <configuration>
87                                                         <outputDirectory>${basedir}/target/properties/</outputDirectory>
88                                                         <resources>
89                                                                 <resource>
90                                                                         <directory>src/main/resources</directory>
91                                                                         <includes>
92                                                                                 <include>*.properties</include>
93                                                                         </includes>
94                                                                         <filtering>true</filtering>
95                                                                 </resource>
96                                                         </resources>
97                                                 </configuration>
98                                         </execution>
99                                 </executions>
100                         </plugin>
101                         <plugin>
102                                 <groupId>org.apache.felix</groupId>
103                                 <artifactId>maven-bundle-plugin</artifactId>
104                                 <version>${bundle.plugin.version}</version>
105                                 <extensions>true</extensions>
106                                 <configuration>
107                                         <instructions>
108                                                 <Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName>
109                                                 <Bundle-Activator>org.openecomp.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
110                                                 <Export-Package>org.openecomp.appc.data.services</Export-Package>
111                                                 <Import-Package>*</Import-Package>
112                                                 <DynamicImport-Package>*</DynamicImport-Package>
113                                         </instructions>
114                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
115                                 </configuration>
116                         </plugin>
117                 </plugins>
118                 <pluginManagement>
119                         <plugins>
120                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
121                                         only. It has no influence on the Maven build itself. -->
122                                 <plugin>
123                                         <groupId>org.eclipse.m2e</groupId>
124                                         <artifactId>lifecycle-mapping</artifactId>
125                                         <version>1.0.0</version>
126                                         <configuration>
127                                                 <lifecycleMappingMetadata>
128                                                         <pluginExecutions>
129                                                                 <pluginExecution>
130                                                                         <pluginExecutionFilter>
131                                                                                 <groupId>
132                                                                                         com.brocade.developer
133                                                                                 </groupId>
134                                                                                 <artifactId>
135                                                                                         providermodule-plugin
136                                                                                 </artifactId>
137                                                                                 <versionRange>
138                                                                                         [1.2.0.100-SNAPSHOT,)
139                                                                                 </versionRange>
140                                                                                 <goals>
141                                                                                         <goal>process</goal>
142                                                                                 </goals>
143                                                                         </pluginExecutionFilter>
144                                                                         <action>
145                                                                                 <ignore />
146                                                                         </action>
147                                                                 </pluginExecution>
148                                                         </pluginExecutions>
149                                                 </lifecycleMappingMetadata>
150                                         </configuration>
151                                 </plugin>
152                         </plugins>
153                 </pluginManagement>
154         </build>
155 </project>