blob: fd773af215cd1d88454681f6aad8404de9506167 [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.openecomp.sdnc.adaptors</groupId>
6 <artifactId>sql-resource</artifactId>
7 <version>0.0.1-SNAPSHOT</version>
8 </parent>
9 <artifactId>sql-resource-provider</artifactId>
10 <packaging>bundle</packaging>
11 <name>Sql Resource Adaptor - Provider</name>
12 <url>http://maven.apache.org</url>
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16 <dependencies>
17 <dependency>
18 <groupId>junit</groupId>
19 <artifactId>junit</artifactId>
20 <version>${junit.version}</version>
21 <scope>test</scope>
22 </dependency>
23 <dependency>
24 <groupId>org.onap.ccsdk.sli.core</groupId>
25 <artifactId>sli-common</artifactId>
26 <version>${sdnctl.sli.version}</version>
27 <scope>compile</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.onap.ccsdk.sli.core</groupId>
31 <artifactId>sli-provider</artifactId>
32 <version>${sdnctl.sli.version}</version>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>equinoxSDK381</groupId>
37 <artifactId>org.eclipse.osgi</artifactId>
38 <version>${equinox.osgi.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.slf4j</groupId>
42 <artifactId>slf4j-api</artifactId>
43 <version>${slf4j.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.slf4j</groupId>
47 <artifactId>jcl-over-slf4j</artifactId>
48 <version>${slf4j.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.slf4j</groupId>
52 <artifactId>slf4j-simple</artifactId>
53 <version>${slf4j.version}</version>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.onap.ccsdk.sli.core</groupId>
58 <artifactId>dblib-provider</artifactId>
59 <version>${sdnctl.dblib.version}</version>
60 </dependency>
61
62 </dependencies>
63
64 <build>
65 <plugins>
66<!-- <plugin>
67 <groupId>com.brocade.developer</groupId>
68 <artifactId>providermodule-plugin</artifactId>
69 <configuration>
70 <packageId>org.openecomp.sdnc</packageId>
71 <appName>sql-resource</appName>
72 </configuration>
73 <executions>
74 <execution>
75 <phase>process-sources</phase>
76 <goals>
77 <goal>process</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin> -->
82
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <version>${bundle.plugin.version}</version>
87 <extensions>true</extensions>
88 <configuration>
89 <instructions>
90 <Bundle-SymbolicName>org.openecomp.sdnc.sli.resource.sql</Bundle-SymbolicName>
91 <Bundle-Activator>org.openecomp.sdnc.sli.resource.sql.SqlResourceActivator</Bundle-Activator>
92 <Export-Package>org.openecomp.sdnc.sli.resource.sql</Export-Package>
93 <Import-Package>*</Import-Package>
94 <DynamicImport-Package>*</DynamicImport-Package>
95 </instructions>
96
97
98 </configuration>
99
100 </plugin>
101
102
103 </plugins>
104 </build>
105</project>