blob: 22b5bb7e67c2df2060331d23e1da30036a294017 [file] [log] [blame]
Skip Wonnell86011b92017-08-15 17:05:27 -05001<?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>
Patrick Brady07567592017-12-13 11:09:30 -08006 <groupId>org.onap.appc</groupId>
Skip Wonnell86011b92017-08-15 17:05:27 -05007 <artifactId>appc-config-data-services</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.0-SNAPSHOT</version>
Skip Wonnell86011b92017-08-15 17:05:27 -05009 </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>
Patrick Brady76706002017-09-04 21:37:25 -070024 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell86011b92017-08-15 17:05:27 -050025 <artifactId>sli-provider</artifactId>
26 <scope>compile</scope>
27 </dependency>
28 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070029 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnell86011b92017-08-15 17:05:27 -050030 <artifactId>sql-resource-provider</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070031 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnell86011b92017-08-15 17:05:27 -050032 <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>
Patrick Brady07567592017-12-13 11:09:30 -0800109 <Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
110 <Export-Package>org.onap.appc.data.services</Export-Package>
Skip Wonnell86011b92017-08-15 17:05:27 -0500111 <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>